fix: change CMD to ENTRYPOINT in Dockerfile for nginx

This commit is contained in:
2025-08-25 17:52:24 +02:00
parent 0f7ece4886
commit 3abe4355b6

View File

@@ -18,4 +18,4 @@ COPY --from=builder /app/static /usr/share/nginx/html
# Default nginx port
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
ENTRYPOINT ["nginx", "-g", "daemon off;"]