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

View File

@ -48,4 +48,5 @@ Bug fixes
| `Issue #4850 <https://redmine.postgresql.org/issues/4850>`_ - Fixed an issue where Datetimepicker control opens when clicking on the label.
| `Issue #4895 <https://redmine.postgresql.org/issues/4895>`_ - Fixed potential issue in reset function for nested objects.
| `Issue #4896 <https://redmine.postgresql.org/issues/4896>`_ - Fixed an issue where escape key not working to close the open/save file dialog.
| `Issue #4906 <https://redmine.postgresql.org/issues/4906>`_ - Fixed an issue where keyboard shortcut for context menu is not working when using Firefox on CentOS7.
| `Issue #4906 <https://redmine.postgresql.org/issues/4906>`_ - Fixed an issue where keyboard shortcut for context menu is not working when using Firefox on CentOS7.
| `Issue #4924 <https://redmine.postgresql.org/issues/4924>`_ - Fixed docker container exit issue occurs due to change in Gunicorn's latest version.