Files
komga-bot/Dockerfile
fhs52267 ba73a98b3b init
2026-03-16 22:43:52 +01:00

5 lines
130 B
Docker

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