pms/web/Dockerfile

22 lines
658 B
Docker
Raw Normal View History

2024-08-18 09:12:02 +08:00
FROM node:16
WORKDIR /gva_web/
2021-06-10 22:05:14 +08:00
COPY . .
2024-08-18 09:19:40 +08:00
RUN yarn config set registry https://mirrors.huaweicloud.com/repository/npm/
RUN yarn && yarn build
2024-08-18 09:12:02 +08:00
#RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
#RUN apk add npm
2024-08-18 09:19:40 +08:00
#RUN npm config set registry https://mirrors.huaweicloud.com/repository/npm/
#RUN npm i cnpm -g
#RUN cnpm install
#RUN npm run 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
2024-08-18 09:19:40 +08:00
RUN ls -al /usr/share/nginx/html