issue #49 for service analysis: indico api key is now in a .env file. readmes, docker...
[pub/jan/aic18.git] / service-analysis / Dockerfile
index ad239ec90879ddb796656346ce9b6524ae2908eb..c9bbb6966454cfd14b8fde1a37078f33161a5a79 100644 (file)
@@ -2,10 +2,13 @@ FROM  python:3.7-slim
 LABEL  maintainer="Sebastian Steiner"
 
 WORKDIR        /app
-COPY   . /app/
+COPY   *.py /app/
+COPY   *.txt /app/
 
 RUN            pip install -r requirements.txt
 
+RUN            python -m textblob.download_corpora
+
 RUN            chmod a+x *.py
 
 CMD            ["python3.7", "./sentiment_analysis.py"]