Files
infoscreen/scheduler/Dockerfile
olaf 76629b8e30 additions and corrections for
deployment instructions
2025-09-04 16:45:29 +00:00

9 lines
231 B
Docker

FROM python:3.13-slim
WORKDIR /app
COPY scheduler/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY scheduler/ ./scheduler
COPY models/ ./models
ENV PYTHONPATH=/app
CMD ["python", "scheduler/scheduler.py"]