Initial commit — personal Telegram meme bot with inline search

This commit is contained in:
goyban
2026-04-24 17:49:22 +00:00
commit c832350300
9 changed files with 500 additions and 0 deletions
+10
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 bot.py db.py ./
CMD ["python", "-u", "bot.py"]