FROM python:alpine3.7 COPY . /app WORKDIR /app RUN pip3 install -r requirements.txt CMD [ "flask", "run", "--host=0.0.0.0" ]