dev1/Dockerfile.nginx
Josh 6d057fb9e2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
upgrade Alpine
2025-08-08 15:01:45 +00:00

10 lines
242 B
Nginx Configuration File

FROM nginx:1.26-alpine3.20
# Remove default config
RUN rm /etc/nginx/nginx.conf
# Replace with staging config
COPY nginx.conf /etc/nginx/nginx.conf
# Copy React build output into staging app's build folder
COPY build/ /usr/share/nginx/html