Added docker file and requirements

This commit is contained in:
Antonio J. Delado 2019-01-24 22:35:54 +01:00
parent a8b595c0f9
commit 4d893f2b88
2 changed files with 13 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./labeler.py" ]

3
requirements.txt Normal file
View file

@ -0,0 +1,3 @@
#logging
#email
#subprocess