From a9e853ab8c476ac80990299a01185c186c84a49f Mon Sep 17 00:00:00 2001 From: Ying Chen Date: Mon, 26 Feb 2024 14:15:35 -0800 Subject: [PATCH] [docker] Upgrade PostgresSQL version from 13 to 15 --- tools/container/base/hue/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/container/base/hue/Dockerfile b/tools/container/base/hue/Dockerfile index 3a2f6cf6e06..76f9b0573e2 100644 --- a/tools/container/base/hue/Dockerfile +++ b/tools/container/base/hue/Dockerfile @@ -43,7 +43,7 @@ RUN set -eux; \ /usr/bin/pip3.8 install supervisor \ && curl -s https://files.pythonhosted.org/packages/45/78/4621eb7085162bc4d2252ad92af1cc5ccacbd417a50e2ee74426331aad18/psycopg2_binary-2.9.3-cp38-cp38-musllinux_1_1_x86_64.whl -o /tmp/psycopg2_binary-2.9.3-cp38-cp38-musllinux_1_1_x86_64.whl \ && dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm \ - && yum install -y postgresql13 \ + && yum install -y postgresql15 \ && curl -sL https://rpm.nodesource.com/setup_14.x | bash - \ && yum install -y nodejs \ && yum clean all -y \