dockerize...

This commit is contained in:
2020-01-26 11:55:20 -05:00
parent b806560b63
commit c1814d883d
4 changed files with 39 additions and 6 deletions

11
Dockerfile Normal file
View File

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