FROM python:3.11-slim WORKDIR /app # Install dependencies COPY orchestrator/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy orchestrator code COPY orchestrator/ ./orchestrator/ # orchestrator/quality.py imports benchmark.fixtures / benchmark.metrics at startup, # so the package must be present in the image (agent_swarm#44). stdlib-only — no extra pip. COPY benchmark/ ./benchmark/ # Expose port EXPOSE 8000 # Run orchestrator CMD ["python", "-m", "uvicorn", "orchestrator.main:app", "--host", "0.0.0.0", "--port", "8000"]