wideesg-frontend/Dockerfile

11 lines
226 B
Docker
Raw Permalink Normal View History

2021-11-15 10:46:26 +08:00
FROM node:10
COPY ./ /app
WORKDIR /app
RUN npm config set registry http://registry.npm.taobao.org
RUN npm install && npm run build
FROM nginx
RUN mkdir /app
COPY --from=0 /app/dist /app
COPY nginx.conf /etc/nginx/nginx.conf