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
Dockerfile
1 1 FROM tiangolo/uwsgi-nginx-flask:python3.8
2 2 ADD . /app
3 3 WORKDIR /app
4   -RUN apt-get install cython
  4 +RUN apt-get update && apt-get install -y cython3
5 5 RUN pip install -r requirements.txt
6 6 ENV FLASK_APP "flaskr"
7 7 ENV FLASK_ENV "production"
... ...