From c00e679c6124f9adf5da7d2236120532cbea6b45 Mon Sep 17 00:00:00 2001 From: dashrath chauhan Date: Tue, 10 Sep 2024 12:41:27 +0100 Subject: [PATCH] Nginx config. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 077bdb7..360206a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,7 @@ RUN chmod 777 /usr/local/bin/docker-entrypoint.sh \ # Final FROM nginx:stable-alpine COPY --from=builder /app/build /usr/share/nginx/html +COPY nginx.conf /etc/nginx/nginx.conf # Copy entrypoint script COPY entrypoint.sh /entrypoint.sh