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.
11 lines
343 B
11 lines
343 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: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;"]
|
|
|