FROM python:3.12-slim WORKDIR /app RUN pip install httpx --no-cache-dir COPY *.py . CMD ["python", "orchestrator.py"]