This commit is contained in:
fhs52267
2026-03-16 22:43:52 +01:00
commit ba73a98b3b
4 changed files with 183 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir python-telegram-bot httpx
COPY bot.py .
CMD ["python", "bot.py"]