fix dockerfile

This commit is contained in:
2025-08-29 14:21:52 +02:00
parent 9d0d458fe3
commit 8ffb850322
+1
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;"]