11 lines
142 B
Docker
11 lines
142 B
Docker
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
|