2026-05-10 17:55:17 -04:00
|
|
|
# syntax=docker/dockerfile:1
|
|
|
|
|
# Hermes Agent -- custom fork build
|
|
|
|
|
# Builds on top of official image + overlays our forked source from Gitea.
|
|
|
|
|
# Requires Docker BuildKit. Pass SSH agent for git clone:
|
|
|
|
|
# docker compose build hermes
|
|
|
|
|
# Or manually:
|
|
|
|
|
# DOCKER_BUILDKIT=1 docker build --ssh default -t hermes-agent:custom .
|
2026-05-09 02:38:23 +00:00
|
|
|
|
2026-05-10 17:55:17 -04:00
|
|
|
# ---------- Base: official Hermes image (system deps, npm, uv, Playwright) ----------
|
2026-05-09 17:39:23 +00:00
|
|
|
FROM nousresearch/hermes-agent:latest
|
2026-05-05 01:42:55 +00:00
|
|
|
|
2026-05-10 17:55:17 -04:00
|
|
|
# ---------- Overlay our forked source ----------
|
|
|
|
|
# Uses SSH agent forwarding from the build host (no key baked into image).
|
|
|
|
|
# --exclude node_modules/.venv keeps the base image's pre-built layers intact.
|
|
|
|
|
# Only the Python source, web UI source, and config change.
|
|
|
|
|
RUN --mount=type=ssh \
|
|
|
|
|
mkdir -p /root/.ssh && \
|
|
|
|
|
ssh-keyscan -p 2222 code.lazyworkhorse.net >> /root/.ssh/known_hosts 2>/dev/null && \
|
|
|
|
|
cd /tmp && \
|
|
|
|
|
GIT_SSH_COMMAND='ssh -p 2222 -o StrictHostKeyChecking=no' \
|
|
|
|
|
git clone --depth 1 --branch main \
|
|
|
|
|
git@code.lazyworkhorse.net:gortium/hermes-agent.git fork && \
|
2026-05-20 13:14:10 -04:00
|
|
|
rm -rf fork/node_modules fork/.venv fork/.git && \
|
|
|
|
|
cp -a fork/. /opt/hermes/ && \
|
2026-05-10 17:55:17 -04:00
|
|
|
rm -rf /tmp/fork /root/.ssh/
|
|
|
|
|
|
|
|
|
|
# ---------- Reinstall Python package (editable) ----------
|
|
|
|
|
# Picks up source changes from our fork.
|
|
|
|
|
RUN . /opt/hermes/.venv/bin/activate && \
|
|
|
|
|
uv pip install --no-cache-dir --no-deps -e /opt/hermes
|
|
|
|
|
|
|
|
|
|
# ---------- Extra system deps ----------
|
2026-05-09 17:39:23 +00:00
|
|
|
USER root
|
2026-05-05 01:42:55 +00:00
|
|
|
RUN apt-get update && \
|
|
|
|
|
apt-get install -y --no-install-recommends \
|
2026-05-10 17:55:17 -04:00
|
|
|
libportaudio2 ca-certificates poppler-utils imagemagick \
|
2026-05-22 13:04:43 -04:00
|
|
|
libolm-dev \
|
2026-05-10 17:55:17 -04:00
|
|
|
texlive-latex-base texlive-latex-extra texlive-fonts-recommended \
|
|
|
|
|
texlive-xetex texlive-science \
|
|
|
|
|
qemu-user-static binfmt-support emacs-nox && \
|
2026-05-05 01:42:55 +00:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
2026-05-10 17:55:17 -04:00
|
|
|
# ---------- UV ----------
|
|
|
|
|
COPY --chmod=0755 --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/
|
2026-05-05 01:42:55 +00:00
|
|
|
|
2026-05-22 13:04:43 -04:00
|
|
|
# ---------- Matrix bridge + extra pip deps ----------
|
|
|
|
|
# Previously installed inline at container startup and persisted via volume mount.
|
|
|
|
|
# Now baked into the image so the fragile venv volume mount can be removed.
|
|
|
|
|
RUN . /opt/hermes/.venv/bin/activate && \
|
|
|
|
|
uv pip install --no-cache-dir 'mautrix[encryption]' openai
|
|
|
|
|
|
2026-05-11 19:02:36 -04:00
|
|
|
WORKDIR /opt/hermes
|
|
|
|
|
|
2026-05-22 13:05:15 -04:00
|
|
|
# ---------- Matrix bridge + extra pip deps ----------
|
|
|
|
|
# Previously installed inline at container startup and persisted via volume mount.
|
|
|
|
|
# Now baked into the image so the fragile venv volume mount can be removed.
|
|
|
|
|
RUN . /opt/hermes/.venv/bin/activate && \
|
|
|
|
|
uv pip install --no-cache-dir 'mautrix[encryption]' openai
|
|
|
|
|
|
2026-05-10 17:55:17 -04:00
|
|
|
# ---------- Piper TTS ----------
|
2026-05-09 17:44:55 +00:00
|
|
|
RUN . /opt/hermes/.venv/bin/activate && \
|
2026-05-10 17:55:17 -04:00
|
|
|
uv pip install --no-cache-dir piper-tts sounddevice numpy && \
|
|
|
|
|
mkdir -p /opt/hermes/.venv/share/piper/voices
|
2026-05-05 01:42:55 +00:00
|
|
|
|
2026-05-10 17:55:17 -04:00
|
|
|
RUN /opt/hermes/.venv/bin/python3 /dev/stdin << 'PYEOF'
|
2026-05-09 13:41:37 +00:00
|
|
|
import urllib.request
|
|
|
|
|
base = '/opt/hermes/.venv/share/piper/voices'
|
2026-05-09 15:21:49 +00:00
|
|
|
url = 'https://huggingface.co/rhasspy/piper-voices/resolve/main/en/en_US/ryan/high/en_US-ryan-high.onnx'
|
|
|
|
|
urllib.request.urlretrieve(url, base + '/en_US-ryan-high.onnx')
|
|
|
|
|
urllib.request.urlretrieve(url + '.json', base + '/en_US-ryan-high.onnx.json')
|
2026-05-09 14:09:50 +00:00
|
|
|
PYEOF
|
2026-05-09 17:39:23 +00:00
|
|
|
|
2026-05-12 18:02:51 -04:00
|
|
|
# ---------- Install Himalaya email CLI ----------
|
|
|
|
|
RUN /opt/hermes/.venv/bin/python3 /dev/stdin << 'PYEOF'
|
|
|
|
|
import urllib.request, tarfile, os, shutil
|
|
|
|
|
url = 'https://github.com/pimalaya/himalaya/releases/download/v1.2.0/himalaya.x86_64-linux.tgz'
|
|
|
|
|
tgz = '/tmp/himalaya.tgz'
|
|
|
|
|
urllib.request.urlretrieve(url, tgz)
|
|
|
|
|
with tarfile.open(tgz) as t:
|
|
|
|
|
t.extractall('/tmp')
|
|
|
|
|
shutil.move('/tmp/himalaya', '/usr/local/bin/himalaya')
|
|
|
|
|
os.chmod('/usr/local/bin/himalaya', 0o755)
|
|
|
|
|
os.remove(tgz)
|
|
|
|
|
print('himalaya v1.2.0 installed')
|
|
|
|
|
PYEOF
|
|
|
|
|
|
2026-05-22 21:37:01 -04:00
|
|
|
# ---------- Install multi-gateway launcher ----------
|
|
|
|
|
# Launches one gateway process per profile (HERMES_PROFILES env var)
|
|
|
|
|
COPY --chmod=0755 run-multi-gateways.sh /usr/local/bin/run-multi-gateways.sh
|
|
|
|
|
|
2026-05-05 01:42:55 +00:00
|
|
|
# ---------- Runtime ----------
|
2026-05-09 17:47:30 +00:00
|
|
|
USER hermes
|
2026-05-05 01:42:55 +00:00
|
|
|
ENV HERMES_HOME=/opt/data
|
|
|
|
|
ENV PATH="/opt/data/.local/bin:${PATH}"
|
2026-05-10 17:55:17 -04:00
|
|
|
# Point browser tool to Playwright's Chromium (already in base image)
|
|
|
|
|
ENV CHROME_EXECUTABLE=/opt/hermes/.playwright/chromium/chrome-linux/chrome
|
2026-05-09 02:38:23 +00:00
|
|
|
|
2026-05-12 14:47:34 -04:00
|
|
|
# Ensure tools directory and toolsets.py are writable by the hermes runtime user
|
|
|
|
|
# so custom tools can be injected from the persistent volume at startup.
|
2026-05-20 13:32:18 -04:00
|
|
|
USER root
|
2026-05-12 14:47:34 -04:00
|
|
|
RUN chown -R hermes:hermes /opt/hermes/tools /opt/hermes/toolsets.py
|
|
|
|
|
|
2026-05-12 13:38:26 -04:00
|
|
|
VOLUME [ "/opt/data" ]
|