4 lines
132 B
Docker
4 lines
132 B
Docker
# 选择更小体积的基础镜像
|
|
FROM nginx:stable-alpine
|
|
COPY ./default.conf /etc/nginx/conf.d
|
|
COPY ./dist /usr/share/nginx/html |