]> git.somenet.org - pub/jan/aic18.git/blob - service-analysis/Dockerfile
issue #49 for service analysis: indico api key is now in a .env file. readmes, docker...
[pub/jan/aic18.git] / service-analysis / Dockerfile
1 FROM    python:3.7-slim
2 LABEL   maintainer="Sebastian Steiner"
3
4 WORKDIR /app
5 COPY    *.py /app/
6 COPY    *.txt /app/
7
8 RUN             pip install -r requirements.txt
9
10 RUN             python -m textblob.download_corpora
11
12 RUN             chmod a+x *.py
13
14 CMD             ["python3.7", "./sentiment_analysis.py"]