From 80df42435657bd823a6785c21b191d0be8b4fc61 Mon Sep 17 00:00:00 2001 From: Jason Garber Date: Mon, 14 Apr 2025 14:42:07 -0400 Subject: [PATCH] Install libpq-dev with postgresql-client --- src/postgresql-client/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/postgresql-client/install.sh b/src/postgresql-client/install.sh index 3287c0c..9f9d05f 100755 --- a/src/postgresql-client/install.sh +++ b/src/postgresql-client/install.sh @@ -12,7 +12,7 @@ fi if [ "${POSTGRESQL_VERSION}" = "os-provided" ]; then apt update --yes - apt install --no-install-recommends --yes postgresql-client + apt install --no-install-recommends --yes libpq-dev postgresql-client exit 0 fi @@ -39,7 +39,7 @@ curl -o /usr/share/postgresql-common/pgdg/apt.postgresql.org.asc --fail https:// sh -c 'echo "deb [signed-by=/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc] https://apt.postgresql.org/pub/repos/apt '${VERSION_CODENAME}'-pgdg main" > /etc/apt/sources.list.d/pgdg.list' apt update --yes -apt install --no-install-recommends --yes postgresql-client-${POSTGRESQL_VERSION} +apt install --no-install-recommends --yes libpq-dev postgresql-client-${POSTGRESQL_VERSION} if [ -n "${curl_installed}" ]; then apt purge curl --autoremove --yes