2024-08-17 22:53:12 +08:00
|
|
|
FROM alpine:latest
|
2020-09-10 19:15:44 +08:00
|
|
|
|
|
|
|
WORKDIR /gva_web/
|
2021-06-10 22:05:14 +08:00
|
|
|
COPY . .
|
2024-08-17 22:53:12 +08:00
|
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
|
|
RUN apk add npm
|
2024-08-18 08:25:51 +08:00
|
|
|
RUN npm config set registry https://mirrors.huaweicloud.com/repository/npm/
|
2024-08-17 22:54:42 +08:00
|
|
|
RUN npm install
|
|
|
|
RUN npm run build
|
2020-09-10 19:15:44 +08:00
|
|
|
|
|
|
|
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
|