small changes in readme
[pub/jan/aic18.git] / service-analysis / Dockerfile
index b09b037ca229e61329248e89bc2f9d8c4dc77b79..ad239ec90879ddb796656346ce9b6524ae2908eb 100644 (file)
@@ -1 +1,11 @@
-FROM alpine:latest
+FROM   python:3.7-slim
+LABEL  maintainer="Sebastian Steiner"
+
+WORKDIR        /app
+COPY   . /app/
+
+RUN            pip install -r requirements.txt
+
+RUN            chmod a+x *.py
+
+CMD            ["python3.7", "./sentiment_analysis.py"]