build(docker): 更新 Dockerfile 中 nginx 配置文件路径
- 将 nginx 配置文件的复制路径从 ./default.conf 修改为 ./docker/default.conf - 优化了配置文件的加载路径,更好地遵循项目结构组织
This commit is contained in:
@@ -10,5 +10,5 @@ ARG URL_DIR=
|
|||||||
COPY ${DIST_DIR} /var/www/html/${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
|
RUN sed -i "s/\ \/index.html/\ \/${URL_DIR}\/index.html/g" /etc/nginx/conf.d/default.conf
|
||||||
# 默认不建议使用自定义nginx配置,如必须使用,请提前沟通
|
# 默认不建议使用自定义nginx配置,如必须使用,请提前沟通
|
||||||
COPY ./default.conf /etc/nginx/conf.d/default.conf
|
COPY ./docker/default.conf /etc/nginx/conf.d/default.conf
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|||||||
Reference in New Issue
Block a user