Files
z420-misc/telegram_bot/Dockerfile
Elias Ahokas b6e94fa231
Some checks failed
deploy misc services / deploy (push) Failing after 0s
add services
2025-11-24 20:05:49 +02:00

9 lines
126 B
Docker

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