Files
xingrin/docker/agent/Dockerfile
2025-12-12 18:04:57 +08:00

25 lines
517 B
Docker
Raw 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.
# ============================================
# XingRin Agent - 轻量心跳上报镜像
# 用途:心跳上报 + 负载监控
# 基础镜像Alpine Linux (~5MB)
# 最终大小:~10MB
# ============================================
FROM alpine:3.19
# 安装必要工具
RUN apk add --no-cache \
bash \
curl \
procps
# 复制 agent 脚本
COPY backend/scripts/worker-deploy/agent.sh /app/agent.sh
RUN chmod +x /app/agent.sh
# 工作目录
WORKDIR /app
# 默认命令
CMD ["bash", "/app/agent.sh"]