From ed795097a867aa05797521a5f3bab76eda4a71ee Mon Sep 17 00:00:00 2001 From: jafreli Date: Sun, 26 Jan 2025 00:23:38 +0100 Subject: [PATCH] nginx update --- dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dockerfile b/dockerfile index 2bdfd77..d86fe40 100644 --- a/dockerfile +++ b/dockerfile @@ -19,6 +19,9 @@ RUN npm run build # Stage 2: Serve the app using Nginx FROM nginx:alpine +# Copy custom Nginx configuration +COPY nginx.conf /etc/nginx/conf.d/default.conf + # Copy build artifacts to Nginx's web root COPY --from=build /app/build /usr/share/nginx/html