From aa7b1f8eb3e583e7dcc379bab8dba621893a487a Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Sun, 2 Aug 2026 16:56:53 +0000 Subject: [PATCH] fix: use JSON notation for HEALTHCHECK CMD (DL3025) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d4017ef..057d6e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] -- 2.54.0