11 lines
237 B
Nginx Configuration File
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
|