From 6509e45b6f738575d293c062569ff9760ed1a6a8 Mon Sep 17 00:00:00 2001 From: Khushboo Vashi Date: Fri, 31 May 2024 14:29:36 +0530 Subject: [PATCH] Fix the issue where docker with SSL v8.7 fails to start. #7520 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eb489468f..c6e0c3d9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -199,7 +199,7 @@ RUN apk add \ libedit \ libldap \ libcap && \ - /venv/bin/python3 -m pip install --no-cache-dir gunicorn==20.1.0 && \ + /venv/bin/python3 -m pip install --no-cache-dir gunicorn==22.0.0 && \ find / -type d -name '__pycache__' -exec rm -rf {} + && \ useradd -r -u 5050 -g root -s /sbin/nologin pgadmin && \ mkdir -p /run/pgadmin /var/lib/pgadmin && \