Fixed docker container exit issue occurs due to change in Gunicorn's latest version.

Updated Dockerfile and hardcoded Gunicorn version to 19.9.0

Fixes #4924
This commit is contained in:
Akshay Joshi
2019-11-12 17:48:10 +05:30
parent 8a03c42bd4
commit fb87920bbb
2 changed files with 3 additions and 2 deletions

View File

@@ -163,7 +163,7 @@ RUN apk add --no-cache --virtual \
postgresql-libs && \
pip install --upgrade pip && \
pip install --no-cache-dir -r requirements.txt && \
pip install --no-cache-dir gunicorn && \
pip install --no-cache-dir gunicorn==19.9.0 && \
apk del --no-cache build-deps
# We need the v12 libpq, which is only in the 'edge' build of Alpine at present