Initial commit

This commit is contained in:
2026-07-01 14:19:57 +02:00
commit c1f8f0c8fa
1531 changed files with 203357 additions and 0 deletions

View File

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