tfse-admin-webapp-v0.2/Dockerfile

10 lines
224 B
Docker
Raw Normal View History

2021-11-16 09:59:27 +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