Files
hermes-agent/Dockerfile
T

22 lines
661 B
Docker
Raw Normal View History

2026-06-16 10:50:50 -04:00
# Base image (nousresearch/hermes-agent) already ships with:
# git, curl, ripgrep, docker-cli, openssh-client, python3-dev,
# gcc, ffmpeg, node 22, npm, procps, xz-utils, s6-overlay.
ARG HERMES_AGENT_VERSION=v2026.6.5
FROM nousresearch/hermes-agent:${HERMES_AGENT_VERSION}
USER root
# Install system packages and HashiCorp repo
# hadolint ignore=DL3008
RUN apt-get update -qq && apt-get upgrade -qq --yes --no-install-recommends \
gnupg \
jq \
&& apt-get -qq --yes autoremove --purge \
&& rm -rf /var/lib/apt/lists/*
# Drop back to the base image's default user
ARG HERMES_UID=10000
ARG HERMES_GID=10000
USER ${HERMES_UID}:${HERMES_GID}