add services
Some checks failed
deploy misc services / deploy (push) Failing after 0s

This commit is contained in:
Elias Ahokas
2025-11-24 20:05:49 +02:00
commit b6e94fa231
7 changed files with 75 additions and 0 deletions

8
telegram_bot/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir python-telegram-bot
CMD ["python", "bot.py"]