yangyin
2024-10-24 ba3e800c55d6406a424e16b8c835c8c37de0ad02
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