You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
247 B

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:alpine
RUN rm -r /var/www/html
COPY --from=builder /build/dist/f13_ang_web /var/www/html