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

32 lines
680 B
Docker

# 使用 CentOS 作为基础镜像
FROM centos:8
# 安装 nginx 和必要工具
RUN yum update -y && yum install -y \
nginx \
curl \
wget \
&& yum clean all
# 复制前端构建文件
COPY dist/ /usr/share/nginx/html/
# 复制 nginx 配置
COPY nginx.conf /etc/nginx/nginx.conf
# 创建必要的目录
RUN mkdir -p /var/log/nginx /var/cache/nginx
# 设置权限
RUN chown -R nginx:nginx /usr/share/nginx/html /var/log/nginx /var/cache/nginx
# 暴露端口
EXPOSE 80
# 健康检查
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD curl -f http://localhost:80/health || exit 1
# 启动 nginx
CMD ["nginx", "-g", "daemon off;"]