Files
ylst-pc/docker/Dockerfile
du.meimei 8027886eec build(docker): 更新 Dockerfile 中 nginx 配置文件路径
- 将 nginx 配置文件的复制路径从 ./default.conf 修改为 ./docker/default.conf
- 优化了配置文件的加载路径,更好地遵循项目结构组织
2025-05-27 16:26:18 +08:00

15 lines
673 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
FROM yldc-docker.pkg.coding.yili.com/pubrepo/pubdocker/nginx:op
# ---------------------只改此处,其它不动--------------------------
# 定义构建物目录 当前目录 ./ 为代码根目录
# ARG DIST_DIR=./dist
ARG DIST_DIR=./dist
# 定义目标相对目录访问url即为: /${URL_DIR}/index.html
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 ./docker/default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80