mirror of
https://github.com/hi2shark/nazhua.git
synced 2026-01-11 22:50:42 +08:00
10 lines
168 B
Docker
10 lines
168 B
Docker
FROM nginx:1.27.3
|
|
|
|
COPY ./dist /home/wwwroot/html
|
|
COPY ./nginx-default.conf.template /etc/nginx/templates/default.conf.template
|
|
|
|
ENV DOMAIN=_
|
|
|
|
# 暴露端口
|
|
EXPOSE 80
|