From e17916cc393b88735983ad7cb9e2f3d57da11da6 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Thu, 28 May 2026 11:56:15 +0200 Subject: [PATCH] fix: drop Dockerfile healthcheck blocking Coolify deploys The wget probe failed because nginx listens on IPv4 only while BusyBox wget resolved localhost to ::1 first, returning Connection refused despite a healthy nginx. A static SPA needs no liveness probe beyond the container's running state; remove the HEALTHCHECK entirely. --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 11d1661..4d2bc34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,4 @@ COPY --from=builder /app/dist /usr/share/nginx/html EXPOSE 80 -HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD wget -qO- http://localhost/ > /dev/null || exit 1 - CMD ["nginx", "-g", "daemon off;"]