feat: init
This commit is contained in:
+21
@@ -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}
|
||||
Reference in New Issue
Block a user