FROM node:18.18-bullseye as builder ARG BUILDDATE ENV BUILDDATE $BUILDDATE RUN echo "Build Date: $BUILDATE" RUN git clone https://git.pblr-nyk.pro/gsd/Facti13.Frontend.VueMaterial && \ mv Facti13.Frontend.VueMaterial /app && chown node:node -R /app && chmod 770 -R /app USER node WORKDIR /app RUN npm install && npm run build FROM nginx:stable-alpine COPY --from=builder /app/dist /usr/share/nginx/html RUN rm /etc/nginx/conf.d/default.conf COPY srv.conf /etc/nginx/conf.d CMD ["nginx", "-g", "daemon off;"]