build(docker): 更新 Dockerfile 中 nginx 配置文件路径

- 将 nginx 配置文件的复制路径从 ./default.conf 修改为 ./docker/default.conf
- 优化了配置文件的加载路径,更好地遵循项目结构组织
This commit is contained in:
du.meimei
2025-05-27 16:26:18 +08:00
parent 5f210b767c
commit 8027886eec

View File

@@ -10,5 +10,5 @@ ARG URL_DIR=
COPY ${DIST_DIR} /var/www/html/${URL_DIR}
RUN sed -i "s/\ \/index.html/\ \/${URL_DIR}\/index.html/g" /etc/nginx/conf.d/default.conf
# 默认不建议使用自定义nginx配置如必须使用请提前沟通
COPY ./default.conf /etc/nginx/conf.d/default.conf
COPY ./docker/default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80