wujingjing
2025-02-24 d3efce76cd9698b364e1db3e17aec2f7ee36d0d9
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