fix dockerfile
All checks were successful
CI / build (push) Successful in 20s
CI / lint (push) Successful in 8s
CI / build-and-push-docker (push) Successful in 54s

This commit is contained in:
2025-08-29 14:21:52 +02:00
parent 9d0d458fe3
commit 8ffb850322

View File

@@ -3,6 +3,7 @@ FROM nginx:latest
WORKDIR /app WORKDIR /app
COPY ./build/* /usr/share/nginx/html/ COPY ./build/* /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80 EXPOSE 80
CMD ["nginx", "-g", "daemon off;"] CMD ["nginx", "-g", "daemon off;"]