6 lines
202 B
Docker
6 lines
202 B
Docker
# 选择更小体积的基础镜像
|
|
FROM nginx:stable-alpine
|
|
COPY ./default.conf /etc/nginx/conf.d
|
|
COPY --chmod=776 ./40-decompress-dist.sh /docker-entrypoint.d
|
|
COPY ./dist.tar.gz /usr/share/nginx/html
|