Files
membank/office-site/Dockerfile
张威33321 a9de3eb853 0908
2026-09-08 17:00:51 +08:00

14 lines
392 B
Docker
Raw Permalink 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 nginx:1.27-alpine
# 站点静态文件
COPY index.html guide.html report.html support.html /usr/share/nginx/html/
COPY assets/ /usr/share/nginx/html/assets/
# 自定义 nginx 配置(支持无后缀访问 /guide、/report、/support
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]