From 91663a6a1378df6c70fe24fbb6074b32454437ee Mon Sep 17 00:00:00 2001 From: gtrefalt Date: Tue, 28 Oct 2025 21:47:36 +0100 Subject: [PATCH] debug Add health check. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e36160..cee8637 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,9 +21,9 @@ EXPOSE 3000 # Set environment ENV NODE_ENV=production -# add health check -HEALTHCHECK --interval=30s --timeout=3s --retries=3 \ - CMD wget -qO- http://localhost:3000/_healthz || exit 1 +# # add health check +# HEALTHCHECK --interval=30s --timeout=3s --retries=3 \ +# CMD wget -qO- http://localhost:3000/_healthz || exit 1 # Start the SvelteKit app