pms/web/Dockerfile

18 lines
454 B
Docker
Raw Normal View History

2024-08-17 21:35:54 +08:00
FROM node:alpine
WORKDIR /gva_web/
2021-06-10 22:05:14 +08:00
COPY . .
2024-08-17 22:41:51 +08:00
RUN npm install -g yarn@latest
2024-08-17 22:34:30 +08:00
RUN yarn config set registry https://registry.npm.taobao.org
2024-08-17 22:39:52 +08:00
RUN yarn install
2024-08-17 22:38:32 +08:00
RUN yarn build
FROM nginx:alpine
LABEL MAINTAINER="SliverHorn@sliver_horn@qq.com"
COPY .docker-compose/nginx/conf.d/my.conf /etc/nginx/conf.d/my.conf
COPY --from=0 /gva_web/dist /usr/share/nginx/html
RUN cat /etc/nginx/nginx.conf
RUN cat /etc/nginx/conf.d/my.conf
RUN ls -al /usr/share/nginx/html