Files
WorldCraft_Discord_Bot/Dockerfile
2020-11-13 23:24:00 +01:00

5 lines
92 B
Docker

FROM python:3
ADD bot.py /
RUN pip install -r requirements.txt
CMD [ "python", "./bot.py" ]