9 lines
117 B
Docker
9 lines
117 B
Docker
FROM python:3.11
|
|
|
|
COPY tgbot tgbot
|
|
COPY bot.py bot.py
|
|
|
|
RUN pip install -r tgbot/requirements.txt
|
|
|
|
CMD python3 bot.py
|