mirror of
https://gitee.com/NexIoT/Universal-IoT-Java.git
synced 2026-08-31 00:19:29 +08:00
22 lines
451 B
Docker
22 lines
451 B
Docker
# 使用 nginx 作为基础镜像
|
|
FROM nginx:alpine
|
|
|
|
# 安装健康检查所需工具
|
|
RUN apk add --no-cache curl
|
|
|
|
# 复制前端构建文件
|
|
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 curl -fsS http://localhost:80/ || exit 1
|
|
|
|
# 启动 nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|