Commit e500f393f3423fff2dd467b11f4ea14c344da110

Authored by Antoine Goutenoir
1 parent be82666d
Exists in master

config: add cython3 to the docker image

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
1 FROM tiangolo/uwsgi-nginx-flask:python3.8 1 FROM tiangolo/uwsgi-nginx-flask:python3.8
2 ADD . /app 2 ADD . /app
3 WORKDIR /app 3 WORKDIR /app
4 -RUN apt-get install cython 4 +RUN apt-get update && apt-get install -y cython3
5 RUN pip install -r requirements.txt 5 RUN pip install -r requirements.txt
6 ENV FLASK_APP "flaskr" 6 ENV FLASK_APP "flaskr"
7 ENV FLASK_ENV "production" 7 ENV FLASK_ENV "production"