-FROM alpine:latest
+FROM python:3
+LABEL maintainer="Sebastian Steiner"
+
+RUN pip install flask
+RUN pip install flask_restful
+RUN pip install indicoio
+
+WORKDIR /app
+COPY . /app/
+
+RUN chmod a+x *.py
+
+CMD ["python3", "./sentiment_analysis.py"]