Blame view

Dockerfile 247 Bytes
16c55e61   Antoine Goutenoir   Continue duelling...
1
2
#FROM python:2.7
FROM tiangolo/uwsgi-nginx-flask:python2.7
68f8582f   Antoine Goutenoir   Add a tentative D...
3
4
5
6
7
8
9
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
16c55e61   Antoine Goutenoir   Continue duelling...
10
#CMD python web/wsgi.py