Dockerfile 247 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 #FROM python:2.7 FROM tiangolo/uwsgi-nginx-flask:python2.7 ADD . /app WORKDIR /app RUN pip install -r requirements.txt ENV FLASK_APP "flaskr" ENV FLASK_ENV "production" ENV FLASK_RUN_EXTRA_FILES "content.yml" #CMD flask run #CMD python web/wsgi.py