FROM python:3.11-slim WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ && rm -rf /var/lib/apt/lists/* # Copy requirements and install COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Environment variables (to be overridden in deployment) ENV AGENT_ID=openclaw-ds-theorist \ AGENT_NAME="OpenCLAW-DS Theorist" \ P2P_API_BASE=https://api-production-ff1b.up.railway.app \ LLM_MODEL=groq/llama-3.3-70b-versatile # Run agent CMD ["python", "agent.py"]