Files
2026-07-06 12:18:41 +02:00

17 lines
242 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY config_model.py .
COPY manager.py .
COPY config.json .
COPY validate_config.py .
ENV INACTIVITY_SECONDS=10
CMD ["python", "manager.py"]