html_digital_item/Dockerfile
Song367 a8aedbeb98
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 22s
添加部署文件
2025-06-19 16:58:49 +08:00

11 lines
205 B
Docker

# 使用官方 Nginx 镜像
FROM nginx:alpine
# 拷贝所有静态文件到 nginx 默认目录
COPY . /usr/share/nginx/html
# 暴露 80 端口
EXPOSE 80
# 启动 nginx
CMD ["nginx", "-g", "daemon off;"]