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 <vibe@mistral.ai>
This commit is contained in:
Lasse Rune Hansen 2026-06-05 13:05:31 +02:00
parent 9f45c6de9c
commit be28650b6f

View file

@ -36,9 +36,5 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port # Expose port
EXPOSE 3000 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) # Entry point (nginx runs by default)
CMD ["nginx", "-g", "daemon off;"] CMD ["nginx", "-g", "daemon off;"]