fix: use JSON notation for HEALTHCHECK CMD (DL3025)
PR Checks / hadolint (pull_request) Successful in 31s
PR Checks / build (pull_request) Successful in 5m38s

This commit is contained in:
Julien Cabillot
2026-08-02 16:56:53 +00:00
parent 027c4ccfe3
commit aa7b1f8eb3
+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"]