From c7c2625347887fa2dc789c24b1c4338509ffc998 Mon Sep 17 00:00:00 2001 From: Carter Date: Fri, 16 Jan 2026 15:49:48 -0600 Subject: [PATCH] removing default conf file to prevent nginx issues --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 47331d2..223e9d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ # Used in the build stage of the pipeline to create a frontend docker image FROM nginx:alpine +RUN rm /etc/nginx/conf.d/default.conf COPY nginx.conf /etc/nginx/nginx.conf -COPY /build /usr/share/nginx/html +COPY /build /usr/share/nginx/html \ No newline at end of file