react/Dockerfile
jank 9fe7723d13
All checks were successful
Build and Push Docker Image / Build (push) Successful in 21s
fix: Fix routing
2025-09-15 08:17:04 +02:00

5 lines
No EOL
158 B
Docker

FROM nginx:stable-alpine
COPY build/client /usr/share/nginx/html
COPY default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]