Dockerize

This commit is contained in:
2020-03-19 11:00:09 -04:00
parent 005e250da2
commit 408a252368
7 changed files with 141 additions and 17 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.8
WORKDIR /app
ADD requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "run.py"]
COPY . /app