6 Commits
Author SHA1 Message Date
jcabillot 9452efcc18 Merge pull request 'fix: use JSON notation for HEALTHCHECK CMD (DL3025)' (#15) from fix/hadolint-DL3025-healthcheck-json into main
Main Release / hadolint (push) Successful in 32s
Main Release / build (push) Successful in 7m32s
Main Release / tag (push) Successful in 22s
Tag Release / hadolint (push) Successful in 29s
Tag Release / build (push) Successful in 33s
Tag Release / build-push (push) Successful in 8m30s
Reviewed-on: #15
2026-08-02 13:04:39 -04:00
Julien Cabillot aa7b1f8eb3 fix: use JSON notation for HEALTHCHECK CMD (DL3025)
PR Checks / hadolint (pull_request) Successful in 31s
PR Checks / build (pull_request) Successful in 5m38s
2026-08-02 16:56:53 +00:00
jcabillot 027c4ccfe3 Merge pull request 'fix: ignore hadolint DL3066 for non-numeric USER hermes' (#14) from fix/hadolint-dl3066 into main
Main Release / hadolint (push) Successful in 13s
Main Release / build (push) Successful in 5m32s
Main Release / tag (push) Successful in 19s
Tag Release / hadolint (push) Successful in 14s
Tag Release / build (push) Successful in 4m36s
Tag Release / build-push (push) Successful in 8m2s
Reviewed-on: #14
2026-08-02 12:35:46 -04:00
opencodecabilloteu 875997a18e fix: ignore hadolint DL3066 for non-numeric USER hermes
PR Checks / hadolint (pull_request) Successful in 28s
PR Checks / build (pull_request) Successful in 7m47s
2026-08-02 16:26:23 +00:00
jcabillot 44fdad0806 Merge pull request 'Update docker/login-action digest to dbcb813' (#12) from renovate/docker-login-action-digest into main
Main Release / hadolint (push) Successful in 15s
Main Release / build (push) Failing after 18m20s
Main Release / tag (push) Skipped
Reviewed-on: #12
2026-07-29 11:40:55 -04:00
renovate 3e6b69117f Update docker/login-action digest to dbcb813
renovate/stability-days Updates have met minimum release age requirement
PR Checks / hadolint (pull_request) Successful in 10s
PR Checks / build (pull_request) Successful in 12m8s
2026-07-29 13:03:28 +00:00
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4 - uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4
- uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4 - uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
steps: steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4 - uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4
- uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4 - uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
+2 -2
View File
@@ -82,13 +82,13 @@ ENV HERMES_WEBUI_AGENT_DIR=/opt/hermes-agent \
RUN useradd --create-home --shell /bin/bash hermes \ RUN useradd --create-home --shell /bin/bash hermes \
&& mkdir -p /workspace \ && mkdir -p /workspace \
&& chown -R hermes:hermes /app /opt/venv /opt/hermes-agent /workspace /home/hermes && chown -R hermes:hermes /app /opt/venv /opt/hermes-agent /workspace /home/hermes
# hadolint ignore=DL3066
USER hermes USER hermes
EXPOSE 8787 EXPOSE 8787
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \ HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
CMD curl -f http://localhost:8787/health || exit 1 CMD ["curl", "-f", "http://localhost:8787/health"]
# Run the WebUI server (which runs Hermes Agent in-process) # Run the WebUI server (which runs Hermes Agent in-process)
CMD ["python", "/app/server.py"] CMD ["python", "/app/server.py"]