From 21d4b904903b80ac16b53e05f37281e9298177f6 Mon Sep 17 00:00:00 2001 From: Tony Drake Date: Tue, 5 Nov 2024 19:25:09 -0500 Subject: [PATCH] Install missing libpq-dev package --- features/postgres-client/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/postgres-client/install.sh b/features/postgres-client/install.sh index 703eeee..098fab0 100755 --- a/features/postgres-client/install.sh +++ b/features/postgres-client/install.sh @@ -8,9 +8,9 @@ apt-get update -qq VERSION_EXISTS=$(apt-cache search --names-only postgresql-client-$POSTGRES_CLIENT_VERSION | wc -l) if [ "$VERSION_EXISTS" -ge 1 ]; then - apt-get install --no-install-recommends -y postgresql-client-$POSTGRES_CLIENT_VERSION + apt-get install --no-install-recommends -y libpq-dev postgresql-client-$POSTGRES_CLIENT_VERSION else - apt-get install --no-install-recommends -y postgresql-common + apt-get install --no-install-recommends -y postgresql-common libpq-dev /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y && apt-get install --no-install-recommends -y postgresql-client-$POSTGRES_CLIENT_VERSION fi