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.
22 lines
411 B
22 lines
411 B
FROM node:alpine as builder
|
|
|
|
WORKDIR /build
|
|
COPY frontend/package.json frontend/package-lock.json ./
|
|
|
|
RUN npm install && mkdir /ng-app && cp -r node_modules/ /ng-app
|
|
|
|
WORKDIR /ng-app
|
|
COPY frontend .
|
|
|
|
RUN $(npm bin)/ng build --prod --build-optimizer
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY nginx/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
COPY --from=builder /ng-app/dist /srv/http
|
|
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT ["nginx", "-g", "daemon off;"]
|