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"]