12345678910111213141516171819202122232425262728 |
- FROM node:lts-alpine as builder
- WORKDIR /code
- ADD package.json /code
- ENV NODE_OPTIONS=--openssl-legacy-provider
- RUN export NODE_OPTIONS
- RUN npm install
- ADD . /code
- RUN npm run build:prod
- #环境变量写在build后面否则找不到指令
- ENV PROJECT_ENV production
- ENV NODE_ENV production
- FROM nginx:alpine
- # 设置时区
- #RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
- #RUN echo 'Asia/Shanghai' >/etc/timezone
- COPY --from=builder code/dist/ /usr/share/nginx/html/
- COPY ./index.html /usr/share/nginx/html/index.html
- COPY ./nginx.conf /etc/nginx/nginx.conf
- EXPOSE 80
|