Merge pull request #30 from victormylle/dockerimage

Dockerimage
This commit is contained in:
victormylle
2020-11-13 23:45:43 +01:00
committed by GitHub

5
Dockerfile Normal file
View File

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