dev1/Dockerfile.nginx
Josh 35a53a3e1f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fixed dockerfile.nginx for staging
2025-08-01 11:35:55 +00:00

11 lines
237 B
Nginx Configuration File

FROM nginx:1.25-alpine
# Remove default config if needed
RUN rm /etc/nginx/conf.d/default.conf
# Copy custom config (optional)
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Copy React build output
COPY build/ /usr/share/nginx/html