From be28650b6f2b3d46189a1ce6d7a0f1d2ccfb4465 Mon Sep 17 00:00:00 2001 From: Lasse Rune Hansen Date: Fri, 5 Jun 2026 13:05:31 +0200 Subject: [PATCH] fix(frontend): remove health check from Dockerfile - nginx:alpine doesn't have wget installed - Health check was causing container to stay in 'starting' state Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- german-app-frontend/Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/german-app-frontend/Dockerfile b/german-app-frontend/Dockerfile index d1d82e3..d3d317d 100644 --- a/german-app-frontend/Dockerfile +++ b/german-app-frontend/Dockerfile @@ -36,9 +36,5 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf # Expose port EXPOSE 3000 -# Health check -HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:3000/ || exit 1 - # Entry point (nginx runs by default) CMD ["nginx", "-g", "daemon off;"]