Added docker support

This commit is contained in:
Sheng
2019-04-18 19:39:14 +08:00
parent f400367eac
commit 46d1e5b091
3 changed files with 16 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM python:3.7-slim
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD ["python", "run.py"]