feat: init
Docker Build and Push / build (push) Has been cancelled

This commit is contained in:
Julien Cabillot
2026-06-16 10:50:50 -04:00
parent 210d74dae7
commit 5a32b57a4e
5 changed files with 157 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
# 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}