Files
Universal-IoT-Java/cn-universal-web-ui/Dockerfile
T
2025-10-29 21:32:25 +08:00

19 lines
416 B
Docker

# 使用 nginx 作为基础镜像
FROM nginx:alpine
# 复制前端构建文件
COPY dist/ /usr/share/nginx/html/
# 复制 nginx 配置
COPY nginx.conf /etc/nginx/nginx.conf
# 暴露端口
EXPOSE 80
# 健康检查
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1
# 启动 nginx
CMD ["nginx", "-g", "daemon off;"]