yangyin
2024-11-15 e71dad5482dab3886e808d09c52e5f0eb36567ad
1
2
3
4
5
6
7
# 从镜像源中把 nginx 镜像拉下来
FROM nginx:1.26.0
 
# 将项目根目录下dist文件夹下的所有文件复制到镜像中 /usr/share/nginx/html/ 目录下
COPY dist/ /usr/share/nginx/html/
# 覆盖 nginx 默认配置
COPY default.conf /etc/nginx/conf.d/default.conf