123456789101112131415 |
- # build stage
- FROM node:lts-alpine as build-stage
- WORKDIR /www
- COPY package*.json ./
- RUN npm install --registry=https://registry.npm.taobao.org
- COPY . .
- RUN npm run build
- # production stage
- FROM nginx:stable-alpine as production-stage
- COPY --from=build-stage /www/dist /usr/share/nginx/html
- COPY nginx.conf /etc/nginx/nginx.conf
- EXPOSE 80
- CMD ["nginx", "-g", "daemon off;"]
|