Files
hermes-agent/Dockerfile
T
Julien Cabillot 48cec80381
Main Release / build (push) Successful in 24s
Main Release / tag (push) Successful in 14s
Tag Release / hadolint (push) Successful in 7s
Tag Release / build (push) Successful in 14s
Tag Release / build-push (push) Successful in 2m46s
Main Release / hadolint (push) Failing after 14m16s
fix: stay root as upstream
2026-06-16 11:35:26 -04:00

16 lines
554 B
Docker

# 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
# hadolint ignore=DL3002
FROM nousresearch/hermes-agent:${HERMES_AGENT_VERSION}
# 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/*