Initial commit

This commit is contained in:
2026-06-07 02:32:28 +03:00
commit 2e645694e4
86 changed files with 10490 additions and 0 deletions

11
bot/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
CMD ["python", "-m", "app.main"]