Files
YTVeille/backend/worker/Dockerfile
T
2026-05-22 09:17:28 +02:00

16 lines
272 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir \
"fastapi>=0.110.0" \
"uvicorn[standard]>=0.29.0" \
"httpx>=0.27.0" \
"pydantic>=2.6.0" \
"apscheduler>=3.10.4"
COPY . .
CMD ["python", "worker/scheduler.py"]