5 lines
92 B
Docker
5 lines
92 B
Docker
FROM python:3
|
|
ADD bot.py /
|
|
RUN pip install -r requirements.txt
|
|
CMD [ "python", "./bot.py" ]
|