FROM python:3.11
COPY tgbot/requirements.txt .
RUN pip install -r requirements.txt
COPY tgbot tgbot
COPY bot.py bot.py
CMD python3 bot.py