From f3db2b9aaa8474df97ae726750c730066ae108b8 Mon Sep 17 00:00:00 2001 From: hardik Date: Sat, 30 Aug 2025 13:23:28 +0530 Subject: [PATCH] updated docker --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 31f9f4fc..3e37503f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,9 @@ RUN rm -rf /usr/share/nginx/html/* # Copy your HTML/CSS/JS files into nginx's web root COPY . /usr/share/nginx/html +# Create /app/build and link/copy files for pipeline compatibility +RUN mkdir -p /app && ln -s /usr/share/nginx/html /app/build + # Expose port 80 for the web server EXPOSE 80