added docker-compose file

This commit is contained in:
git
2021-03-01 11:12:28 +01:00
parent 51b72a4c48
commit 07d1c7f5c3
2 changed files with 16 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3-alpine
COPY . /code/
WORKDIR /code/
RUN pip install -r /code/requirements.txt
CMD ["python","src/app.py"]