1 Commits
Author SHA1 Message Date
renovate 6b52a60d66 Update hadolint/hadolint-action action to v3.4.0
renovate/stability-days Updates have met minimum release age requirement
PR Checks / build (pull_request) Successful in 5m36s
PR Checks / hadolint (pull_request) Failing after 15s
2026-08-01 14:27:01 +00:00
+2 -2
View File
@@ -82,13 +82,13 @@ ENV HERMES_WEBUI_AGENT_DIR=/opt/hermes-agent \
RUN useradd --create-home --shell /bin/bash hermes \
&& mkdir -p /workspace \
&& chown -R hermes:hermes /app /opt/venv /opt/hermes-agent /workspace /home/hermes
# hadolint ignore=DL3066
USER hermes
EXPOSE 8787
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
CMD ["curl", "-f", "http://localhost:8787/health"]
CMD curl -f http://localhost:8787/health || exit 1
# Run the WebUI server (which runs Hermes Agent in-process)
CMD ["python", "/app/server.py"]