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.
15 lines
411 B
15 lines
411 B
FROM node:10 as build-stage
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm set strict-ssl false
|
|
RUN npm config set registry http://registry.npm.taobao.org
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# production stage
|
|
FROM nginx:1.13.12-alpine as production-stage
|
|
RUN mkdir /usr/share/nginx/html/monitor
|
|
COPY --from=build-stage /app/dist /usr/share/nginx/html/monitor
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|