Spaces:
Paused
Paused
| # HermesFace on Hugging Face Spaces β Source build | |
| # Builds Hermes Agent from source since no pre-built Docker image is published | |
| # Rebuild 2026-04-13: initial release | |
| # ββ Stage 1: Build Hermes Agent from source ββββββββββββββββββββββββββββββ | |
| FROM ghcr.io/astral-sh/uv:0.11.6-python3.13-trixie AS uv_source | |
| FROM tianon/gosu:1.19-trixie AS gosu_source | |
| FROM debian:13.4 | |
| SHELL ["/bin/bash", "-c"] | |
| ENV PYTHONUNBUFFERED=1 | |
| ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright | |
| # ββ System dependencies ββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| RUN echo "[build] Installing system deps..." && START=$(date +%s) \ | |
| && apt-get update \ | |
| && apt-get install -y --no-install-recommends \ | |
| build-essential nodejs npm python3 python3-pip python3-venv \ | |
| ripgrep ffmpeg gcc python3-dev libffi-dev procps \ | |
| git ca-certificates curl \ | |
| && rm -rf /var/lib/apt/lists/* \ | |
| && pip3 install --no-cache-dir --break-system-packages huggingface_hub requests pyyaml \ | |
| && echo "[build] System deps: $(($(date +%s) - START))s" | |
| # ββ Non-root user ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| RUN useradd -u 10000 -m -d /opt/data hermes | |
| COPY --chmod=0755 --from=gosu_source /gosu /usr/local/bin/ | |
| COPY --chmod=0755 --from=uv_source /usr/local/bin/uv /usr/local/bin/uvx /usr/local/bin/ | |
| # ββ Clone and build Hermes Agent βββββββββββββββββββββββββββββββββββββββββ | |
| RUN echo "[build] Cloning Hermes Agent..." && START=$(date +%s) \ | |
| && git clone --depth 1 https://github.com/NousResearch/hermes-agent.git /opt/hermes \ | |
| && echo "[build] Clone: $(($(date +%s) - START))s" | |
| WORKDIR /opt/hermes | |
| # ββ Node dependencies + Playwright + Web Dashboard build βββββββββββββββββ | |
| RUN echo "[build] Installing Node deps + Playwright..." && START=$(date +%s) \ | |
| && npm install --prefer-offline --no-audit \ | |
| && npx --yes playwright@1.52.0 install chromium --only-shell \ | |
| && if [ -d /opt/hermes/scripts/whatsapp-bridge ]; then \ | |
| cd /opt/hermes/scripts/whatsapp-bridge && npm install --prefer-offline --no-audit; \ | |
| fi \ | |
| && echo "[build] Building web dashboard..." \ | |
| && cd /opt/hermes/web && npm install --prefer-offline --no-audit && npm run build \ | |
| && cd /opt/hermes && npm cache clean --force \ | |
| && echo "[build] Node deps + web dashboard: $(($(date +%s) - START))s" | |
| # ββ Python dependencies ββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| RUN chown -R hermes:hermes /opt/hermes | |
| USER hermes | |
| RUN echo "[build] Installing Python deps..." && START=$(date +%s) \ | |
| && cd /opt/hermes \ | |
| && uv venv \ | |
| && uv pip install --no-cache-dir -e ".[all]" \ | |
| && uv pip install --no-cache-dir huggingface_hub requests pyyaml \ | |
| && uv pip install --no-cache-dir ccxt httpx \ | |
| && echo "[build] Python deps: $(($(date +%s) - START))s" | |
| USER root | |
| RUN chmod +x /opt/hermes/docker/entrypoint.sh | |
| # ββ Prepare runtime dirs ββββββββββββββββββββββββββββββββββββββββββββββββ | |
| RUN mkdir -p /opt/data/cron /opt/data/sessions /opt/data/logs /opt/data/hooks \ | |
| /opt/data/memories /opt/data/skills /opt/data/skins /opt/data/plans \ | |
| /opt/data/workspace /opt/data/home \ | |
| && chown -R hermes:hermes /opt/data | |
| USER hermes | |
| # ββ HermesFace scripts (persistence + entrypoint + DNS + assets) ββββββ | |
| ARG CACHE_BUST=2026-07-20-futures-v1 | |
| RUN echo "Build: ${CACHE_BUST}" | |
| COPY --chown=hermes:hermes scripts /opt/data/scripts | |
| COPY --chown=hermes:hermes assets /opt/data/assets | |
| COPY --chown=hermes:hermes hermes_overlay /opt/data/hermes_overlay | |
| COPY --chown=hermes:hermes hermes_overlay /opt/hermesface_overlay | |
| RUN chmod +x /opt/data/scripts/entrypoint.sh \ | |
| /opt/data/scripts/dns-resolve.py \ | |
| /opt/data/scripts/hermes_persist.py \ | |
| /opt/data/scripts/save_to_dataset.py \ | |
| /opt/data/scripts/save_to_dataset_atomic.py \ | |
| /opt/data/scripts/restore_from_dataset.py \ | |
| /opt/data/scripts/restore_from_dataset_atomic.py | |
| ENV HERMES_HOME=/opt/data | |
| ENV PATH="/opt/hermes/.venv/bin:$PATH" | |
| WORKDIR /opt/data | |
| CMD ["/opt/data/scripts/entrypoint.sh"] | |