2022-04-05 05:25:15 +00:00
|
|
|
FROM registry.cn-zhangjiakou.aliyuncs.com/dvadmin-pro/node12-base-web:latest
|
|
|
|
WORKDIR /web/
|
|
|
|
COPY web/. .
|
|
|
|
RUN npm install --registry=https://registry.npm.taobao.org
|
|
|
|
RUN npm run build
|
|
|
|
|
2023-06-18 02:02:38 +00:00
|
|
|
FROM registry.cn-zhangjiakou.aliyuncs.com/dvadmin-pro/nginx:alpine
|
2022-04-05 05:25:15 +00:00
|
|
|
COPY ./docker_env/nginx/my.conf /etc/nginx/conf.d/my.conf
|
|
|
|
COPY --from=0 /web/dist /usr/share/nginx/html
|