From f1466363320388ea6e23340355a5cbe5e5be8989 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Feb 2026 14:18:24 +0100 Subject: [PATCH] [bitnami/postgrest] Release 14.5.0-debian-12-r4 (#91107) Signed-off-by: Bitnami Bot --- bitnami/postgrest/14/debian-12/Dockerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/bitnami/postgrest/14/debian-12/Dockerfile b/bitnami/postgrest/14/debian-12/Dockerfile index 735261abab96..83a4389dfacc 100644 --- a/bitnami/postgrest/14/debian-12/Dockerfile +++ b/bitnami/postgrest/14/debian-12/Dockerfile @@ -7,7 +7,7 @@ ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith" ARG TARGETARCH LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \ - org.opencontainers.image.created="2026-02-24T13:13:30Z" \ + org.opencontainers.image.created="2026-02-25T13:06:51Z" \ org.opencontainers.image.description="Application packaged by Broadcom, Inc." \ org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/postgrest/README.md" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/postgrest" \ @@ -23,13 +23,13 @@ ENV HOME="/" \ COPY prebuildfs / SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"] # Install required system packages and dependencies -RUN install_packages ca-certificates curl libcom-err2 libffi8 libgcc-s1 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed6 libicu72 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.5-0 liblzma5 libnettle8 libp11-kit0 libpq5 libsasl2-2 libssl3 libstdc++6 libtasn1-6 libunistring2 libuuid1 libxml2 libxslt1.1 procps zlib1g +RUN install_packages ca-certificates curl libffi8 libgcc-s1 libgmp10 libgnutls30 libhogweed6 libicu72 libidn2-0 libldap-2.5-0 liblzma5 libnettle8 libp11-kit0 libsasl2-2 libssl3 libstdc++6 libtasn1-6 libunistring2 libuuid1 libxml2 libxslt1.1 procps zlib1g RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \ DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; \ mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \ COMPONENTS=( \ - "postgresql-lib-18.2.0-0-linux-${OS_ARCH}-debian-12" \ - "postgrest-14.5.0-1-linux-${OS_ARCH}-debian-12" \ + "postgresql-lib-18.3.0-0-linux-${OS_ARCH}-debian-12" \ + "postgrest-14.5.0-2-linux-${OS_ARCH}-debian-12" \ ) ; \ for COMPONENT in "${COMPONENTS[@]}"; do \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \ @@ -48,7 +48,8 @@ RUN uninstall_packages curl ENV APP_VERSION="14.5.0" \ BITNAMI_APP_NAME="postgrest" \ - IMAGE_REVISION="3" \ + IMAGE_REVISION="4" \ + LD_LIBRARY_PATH="/opt/bitnami/postgresql/lib:$LD_LIBRARY_PATH" \ PATH="/opt/bitnami/postgresql-lib/bin:/opt/bitnami/postgrest/bin:$PATH" USER 1001