5 lines
130 B
Docker
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"] |