Commit ba68f8396e43e9b581f00e33cf69559bed01e906

Authored by Antoine Goutenoir
1 parent 085ee7eb
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"
... ...