add tg bot and readme

This commit is contained in:
Maxim
2025-12-16 22:34:40 +03:00
parent bf03750e76
commit 72020909dc
6 changed files with 355 additions and 0 deletions

View File

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