diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 6b0491d7..4cd544fd 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -19,11 +19,14 @@ COPY . . RUN pnpm build # Expose port -EXPOSE 3000 +EXPOSE 806 + +# Set port environment variable +ENV PORT=806 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD curl -f http://localhost:3000 || exit 1 + CMD curl -f http://localhost:806 || exit 1 # Start the application CMD ["pnpm", "start"]