# Root Agent Runtime

FROM python:3.11-slim

WORKDIR /app

# Install dependencies
COPY pyproject.toml ./
RUN pip install --no-cache-dir -e .

# Copy agent code
COPY agent.py modes.py ./
COPY workflows/ ./workflows/

# Run the agent
CMD ["python", "-m", "aimp_sdk.agent_worker", "--module", "agent.py"]
