Files

16 lines
555 B
Docker
Raw Permalink 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.19
2026-06-16 11:29:20 -04:00
# hadolint ignore=DL3002
2026-06-16 10:50:50 -04:00
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/*