added dockerfile

This commit is contained in:
2020-11-13 23:24:00 +01:00
parent 628251201a
commit 81d6cfaab1

4
Dockerfile Normal file
View File

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