From 4b8f6ed6438a2c967accf5ff3e5b5e1407f9ed56 Mon Sep 17 00:00:00 2001 From: V0idC0de <26016825+V0idC0de@users.noreply.github.com> Date: Sun, 20 Jul 2025 15:31:49 +0200 Subject: [PATCH] Fixhancement: follow redirects in curl health check (#10415) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 72c98b7cb..70226d41f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -265,4 +265,4 @@ ENTRYPOINT ["/init"] EXPOSE 8000 -HEALTHCHECK --interval=30s --timeout=10s --retries=5 CMD [ "curl", "-fs", "-S", "--max-time", "2", "http://localhost:8000" ] +HEALTHCHECK --interval=30s --timeout=10s --retries=5 CMD [ "curl", "-fs", "-S", "-L", "--max-time", "2", "http://localhost:8000" ]