10 lines
309 B
Docker
10 lines
309 B
Docker
FROM registry.cn-zhangjiakou.aliyuncs.com/dvadmin-pro/dvadmin3-base-web:18.20-alpine
|
|
WORKDIR /web/
|
|
COPY web/. .
|
|
RUN yarn install --registry=https://registry.npmmirror.com
|
|
RUN yarn build
|
|
|
|
FROM nginx:alpine
|
|
COPY ./docker_env/nginx/my.conf /etc/nginx/conf.d/my.conf
|
|
COPY --from=0 /web/dist /usr/share/nginx/html
|