From d69227ce1017b4cae733442ca61d1015c4d98d26 Mon Sep 17 00:00:00 2001 From: Maxcj <29125673+Maxcj@users.noreply.github.com> Date: Fri, 6 Oct 2023 22:10:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=89=8B=E5=8A=A8=E6=9B=B4=E6=96=B0=20r?= =?UTF-8?q?edis=20=E4=BE=9D=E8=B5=96=E8=87=B3=204.1.0=20(#2311)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 手动更新 redis 依赖至 4.1.0 * 更新 redis 依赖版本 Co-authored-by: Leo Q --------- Co-authored-by: Maxcj <29125673+Maxcj@users.noreply.github.com> Co-authored-by: Leo Q --- src/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/docker/Dockerfile b/src/docker/Dockerfile index f8848cbe72..236ca05e91 100644 --- a/src/docker/Dockerfile +++ b/src/docker/Dockerfile @@ -10,6 +10,7 @@ RUN cd /opt \ && yum -y install nginx \ && source /opt/venv4archery/bin/activate \ && pip3 install -r /opt/archery/requirements.txt \ + && pip3 install "redis>=4.1.0" \ && cp -f /opt/archery/src/docker/nginx.conf /etc/nginx/ \ && cp -f /opt/archery/src/docker/supervisord.conf /etc/ \ && mv /opt/sqladvisor /opt/archery/src/plugins/ \