[bitnami/postgrest] Release 14.5.0-debian-12-r4 (#91107)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot 2026-02-25 14:18:24 +01:00 committed by GitHub
parent 00f95bbfd7
commit f146636332
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 5 deletions

View File

@ -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