From 903162691a3a1cbd6c8edbe65312090cf834eabe Mon Sep 17 00:00:00 2001 From: Arunprasad Rajkumar Date: Thu, 3 Oct 2024 19:43:40 +0530 Subject: [PATCH] Tests are broken after PG17 release (#886) We do not pin the postgresql-client causing the test failures after PG17 release due to the issue discussed here in the PG mailing list[1]. This commit pins the postgresql-client version as per the docker env variable PGVERSION. [1] https://postgrespro.com/list/thread-id/2693550 Signed-off-by: Arunprasad Rajkumar --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bd72c269..15df8beb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -118,7 +118,7 @@ RUN dpkg --add-architecture ${TARGETARCH:-arm64} && apt update \ psmisc \ openssl \ postgresql-common \ - postgresql-client \ + postgresql-client-${PGVERSION} \ postgresql-client-common \ && apt clean \ && rm -rf /var/lib/apt/lists/*