Skip to content

Commit

Permalink
Dockerfile: Pin gunicorn version
Browse files Browse the repository at this point in the history
Latest gunicorn release (20.0.0) broke the wsgi application factory feature
(see benoitc/gunicorn#2159).

So pin gunicorn version to 19.9.0 until the issue gets fixed upstream.

Closes T2080
  • Loading branch information
anlambert committed Nov 12, 2019
1 parent 57e5faf commit 8ecaa9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -22,7 +22,7 @@ USER swh
RUN python3 -m venv /srv/softwareheritage/venv
ENV PATH="/srv/softwareheritage/venv/bin:${PATH}"
RUN pip install --upgrade pip setuptools wheel
RUN pip install gunicorn
RUN pip install gunicorn==19.9.0

RUN pip install \
swh-core[db,http] \
Expand Down

0 comments on commit 8ecaa9b

Please sign in to comment.