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

6 lines
100 B
Docker

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