From 42d275d4fae3f619b3ab4557f031b8d4d935374f Mon Sep 17 00:00:00 2001 From: Sumedh Date: Tue, 13 Aug 2024 05:06:48 +0000 Subject: [PATCH] local dns modified for nginx --- Dockerfile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 963c4a1..1d49249 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,16 +4,13 @@ WORKDIR /usr/src/app # this will allow us to run vite and other tools directly ENV PATH /usr/src/node_modules/.bin:$PATH -# Add custom DNS mapping -ARG LOCAL_DNS -RUN echo "$LOCAL_DNS" >> /etc/hosts - -RUN cat /etc/hosts # inject all environment vars we'll need ARG VITE_BACKEND_URL ENV VITE_BACKEND_URL=$VITE_BACKEND_URL +RUN echo $VITE_BACKEND_URL + COPY package.json ./ RUN npm install @@ -25,6 +22,12 @@ RUN npm run build FROM nginx:latest as prod +# Add custom DNS mapping +ARG LOCAL_DNS +RUN echo "$LOCAL_DNS" >> /etc/hosts + +RUN cat /etc/hosts + COPY --from=builder /usr/src/app/dist /usr/share/nginx/html CMD ["nginx", "-g", "daemon off;"]