dev1/Dockerfile.nginx
Josh 66721ee207
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
updated tag format, nginx Dockerfile
2025-08-01 12:11:26 +00:00

11 lines
239 B
Nginx Configuration File

FROM nginx:1.25-alpine
# 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