client_front_end/Dockerfile

11 lines
225 B
Docker
Raw Normal View History

2023-08-07 16:08:51 +08:00
FROM node:16
2023-08-04 11:03:14 +08:00
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
2023-08-07 15:52:03 +08:00
COPY nginx.conf /etc/nginx/nginx.conf