FROM node:18-alpine as builder WORKDIR /build COPY . . RUN npm install --reg https://nexus.pblr-nyk.pro/repository/npm/ && \ npm run ng build FROM nginx:stable-alpine COPY --from=builder /build/dist/f13_ang_web /usr/share/nginx/html RUN rm /etc/nginx/conf.d/default.conf COPY srv.conf /etc/nginx/conf.d CMD ["nginx", "-g", "daemon off;"]