mirror of
https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network.git
synced 2025-06-07 05:47:57 +08:00
12 lines
382 B
Docker
Executable File
12 lines
382 B
Docker
Executable File
FROM nginx:1.13.0-alpine
|
|
COPY dist /usr/share/nginx/html/
|
|
|
|
##将nginx配置模板复制过去到指定目录
|
|
COPY default.template /etc/nginx/conf.d/
|
|
|
|
#将docker环境下的命令行路径切换到/etc/nginx/conf.d下执行
|
|
WORKDIR /etc/nginx/conf.d
|
|
#添加环境变量的写入
|
|
|
|
ENTRYPOINT envsubst < default.template > default.conf && cat default.conf && nginx -g 'daemon off;'
|