Blame view

Dockerfile 257 Bytes
e7dbfe0d   Antoine Goutenoir   config: update do...
1
FROM tiangolo/uwsgi-nginx-flask:python3.8
68f8582f   Antoine Goutenoir   Add a tentative D...
2
3
ADD . /app
WORKDIR /app
085ee7eb   Antoine Goutenoir   config: add cytho...
4
RUN apt-get install cython
68f8582f   Antoine Goutenoir   Add a tentative D...
5
6
7
8
9
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