FROM python:3.11-slim WORKDIR /app # Install dependencies RUN pip install --no-cache-dir python-telegram-bot==20.7 requests # Copy bot script COPY telegram_command_bot.py . # Run bot CMD ["python3", "telegram_command_bot.py"]