diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 4cd544fd..4edad983 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -24,6 +24,9 @@ EXPOSE 806 # Set port environment variable ENV PORT=806 +# Install curl for health check +RUN apk add --no-cache curl + # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD curl -f http://localhost:806 || exit 1