FROM python:alpine3.7 MAINTAINER Kimbro Staken version: 0.1 COPY . /app WORKDIR /app RUN pip install -r requirements.txt ENV APACHE_RUN_USER www-data ENV APACHE_RUN_GROUP www-data ENV APACHE_LOG_DIR /var/log/apache2 EXPOSE 5000 CMD python ./index.py