FROM node:22-slim # 1. 基础依赖 RUN apt-get update && apt-get install -y --no-install-recommends \ git openssh-client build-essential python3 python3-pip \ g++ make ca-certificates && rm -rf /var/lib/apt/lists/* # 2. Python 依赖 RUN pip3 install --no-cache-dir huggingface_hub --break-system-packages # 3. 安装 OpenClaw RUN npm install -g openclaw@latest --unsafe-perm # 4. 工作目录 WORKDIR /app # 5. 拷贝文件 COPY sync.py . COPY start-openclaw.sh . RUN chmod +x start-openclaw.sh # 6. 创建数据目录(关键) RUN mkdir -p /root/.openclaw/ # 7. 环境变量 ENV PORT=7860 HOME=/root EXPOSE 7860 CMD ["./start-openclaw.sh"]