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