2 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
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
continue-on-error: true
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: hadolint/hadolint-action@2a66e89f53d0771bb131a7fa31f3136336094aa6 # v3.4.0
- uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
with:
dockerfile: Dockerfile
+1 -1
View File
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: hadolint/hadolint-action@2a66e89f53d0771bb131a7fa31f3136336094aa6 # v3.4.0
- uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
with:
dockerfile: Dockerfile
+1 -1
View File
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: hadolint/hadolint-action@2a66e89f53d0771bb131a7fa31f3136336094aa6 # v3.4.0
- uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
with:
dockerfile: Dockerfile
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
continue-on-error: true
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: hadolint/hadolint-action@2a66e89f53d0771bb131a7fa31f3136336094aa6 # v3.4.0
- uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
with:
dockerfile: Dockerfile
+1 -1
View File
@@ -88,7 +88,7 @@ USER hermes
EXPOSE 8787
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)
CMD ["python", "/app/server.py"]