Files
hermione-fe/Dockerfile
2024-08-13 05:06:48 +00:00

34 lines
571 B
Docker

FROM node:latest as builder
WORKDIR /usr/src/app
# this will allow us to run vite and other tools directly
ENV PATH /usr/src/node_modules/.bin:$PATH
# 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
COPY . ./
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;"]