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