docker-compose setup (wip)

This commit is contained in:
2019-11-13 13:03:43 -05:00
parent 31877283b3
commit df8ab7727b
18 changed files with 212 additions and 151 deletions

11
Dockerfile Normal file
View File

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