Updated to work as a Docker container.

This commit is contained in:
Josh Creek
2019-11-08 22:02:46 +00:00
parent d01e73344e
commit a7f3d12bce
2 changed files with 44 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.6.9
ADD welcome-bot.py /
RUN pip install discord.py==0.16.12
CMD [ "python", "./welcome-bot.py" ]