Blame view

Dockerfile 279 Bytes
773269c6   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
e500f393   Antoine Goutenoir   config: add cytho...
4
RUN apt-get update && apt-get install -y cython3
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