Dockerfile 633 B

12345678910111213141516171819202122232425262728
  1. # STEP 1: Build
  2. FROM node:8-alpine as builder
  3. LABEL authors="cipchk <cipchk@qq.com>"
  4. COPY package.json package-lock.json ./
  5. RUN npm set progress=false && npm config set depth 0 && npm cache clean --force
  6. RUN npm i && mkdir /ng-alain && cp -R ./node_modules ./ng-alain
  7. WORKDIR /ng-alain
  8. COPY . .
  9. RUN npm run build
  10. # STEP 2: Setup
  11. FROM nginx:1.13.5-alpine
  12. COPY --from=builder /ng-alain/_nginx/default.conf /etc/nginx/conf.d/default.conf
  13. COPY --from=builder /ng-alain/_nginx/ssl/* /etc/nginx/ssl/
  14. RUN rm -rf /usr/share/nginx/html/*
  15. COPY --from=builder /ng-alain/dist /usr/share/nginx/html
  16. CMD [ "nginx", "-g", "daemon off;"]