-FROM alpine:latest
+FROM python:3.7-slim
+LABEL maintainer="Sebastian Steiner"
+
+WORKDIR /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"]