diff --git a/UBI/Dockerfile-multiarch.template b/UBI/Dockerfile-multiarch.template index 070c84fe..ee93c799 100644 --- a/UBI/Dockerfile-multiarch.template +++ b/UBI/Dockerfile-multiarch.template @@ -18,6 +18,7 @@ RUN --mount=type=secret,id=cs_token \ ARCH="${TARGETARCH}" ; \ base_url="https://download.postgresql.org/pub/repos/yum/reporpms" ; \ pg_failover_slots_pkg="pg_failover_slots_%%PG_MAJOR%%" ; \ + pg_squeeze_pkg="pg_squeeze_%%PG_MAJOR%%" ; \ pg_audit_pkg="pgaudit%%PGAUDIT_VERSION%%_%%PG_MAJOR%%" ; \ case $ARCH in \ amd64) \ @@ -31,11 +32,13 @@ RUN --mount=type=secret,id=cs_token \ ppc64le) \ curl -u token:$(cat /run/secrets/cs_token) -1sLf https://downloads.enterprisedb.com/basic/enterprise/setup.rpm.sh | bash ; \ pg_failover_slots_pkg="edb-pg%%PG_MAJOR%%-pg-failover-slots1" ; \ + pg_squeeze_pkg="edb-pg%%PG_MAJOR%%-pg-squeeze1" ; \ pg_audit_pkg="edb-pg%%PG_MAJOR%%-pgaudit1" ; \ if [ "%%PG_MAJOR%%" -gt "15" ]; then pg_audit_pkg="edb-pg%%PG_MAJOR%%-pgaudit%%PG_MAJOR%%"; fi ;; \ s390x) \ curl -u token:$(cat /run/secrets/cs_token) -1sLf https://downloads.enterprisedb.com/basic/edb/setup.rpm.sh | bash ; \ pg_failover_slots_pkg="edb-pg%%PG_MAJOR%%-pg-failover-slots1" ; \ + pg_squeeze_pkg="edb-pg%%PG_MAJOR%%-pg-failover-slots1" ; \ pg_audit_pkg="edb-pg%%PG_MAJOR%%-pgaudit1" ; \ if [ "%%PG_MAJOR%%" -gt "15" ]; then pg_audit_pkg="edb-pg%%PG_MAJOR%%-pgaudit%%PG_MAJOR%%"; fi ;; \ *) \ diff --git a/UBI/Dockerfile-multilang.template b/UBI/Dockerfile-multilang.template index 87e2c163..2950de1e 100644 --- a/UBI/Dockerfile-multilang.template +++ b/UBI/Dockerfile-multilang.template @@ -37,6 +37,7 @@ RUN set -xe ; \ postgresql%%PG_MAJOR%%-server-%%POSTGRES_VERSION%% \ postgresql%%PG_MAJOR%%-libs-%%POSTGRES_VERSION%% \ pg_failover_slots_%%PG_MAJOR%% \ + pg_squeeze_%%PG_MAJOR%% \ "$pg_audit_pkg" \ ; \ rm -fr /tmp/* ; \ diff --git a/UBI/Dockerfile-postgis-multilang.template b/UBI/Dockerfile-postgis-multilang.template index a300801e..225d1f8e 100644 --- a/UBI/Dockerfile-postgis-multilang.template +++ b/UBI/Dockerfile-postgis-multilang.template @@ -38,6 +38,7 @@ RUN set -xe ; \ postgresql%%PG_MAJOR%%-server-%%POSTGRES_VERSION%% \ postgresql%%PG_MAJOR%%-libs-%%POSTGRES_VERSION%% \ pg_failover_slots_%%PG_MAJOR%% \ + pg_squeeze_%%PG_MAJOR%% \ "$pg_audit_pkg" \ ; \ rm -fr /tmp/* ; \ diff --git a/UBI/Dockerfile-postgis.template b/UBI/Dockerfile-postgis.template index 137c3adb..14af674c 100644 --- a/UBI/Dockerfile-postgis.template +++ b/UBI/Dockerfile-postgis.template @@ -37,6 +37,7 @@ RUN set -xe ; \ postgresql%%PG_MAJOR%%-server-%%POSTGRES_VERSION%% \ postgresql%%PG_MAJOR%%-libs-%%POSTGRES_VERSION%% \ pg_failover_slots_%%PG_MAJOR%% \ + pg_squeeze_%%PG_MAJOR%% \ "$pg_audit_pkg" \ ; \ rm -fr /tmp/* ; \ diff --git a/UBI/Dockerfile.template b/UBI/Dockerfile.template index 9f41ec7b..390dad90 100644 --- a/UBI/Dockerfile.template +++ b/UBI/Dockerfile.template @@ -36,6 +36,7 @@ RUN set -xe ; \ postgresql%%PG_MAJOR%%-server-%%POSTGRES_VERSION%% \ postgresql%%PG_MAJOR%%-libs-%%POSTGRES_VERSION%% \ pg_failover_slots_%%PG_MAJOR%% \ + pg_squeeze_%%PG_MAJOR%% \ "$pg_audit_pkg" \ ; \ rm -fr /tmp/* ; \