From f77086174fe093ce35a5d93219f2d52ef0b4f1f2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 29 Sep 2025 14:14:15 +0200 Subject: [PATCH] [bitnami/postgresql] Release 18.0.0-debian-12-r1 (#86607) Signed-off-by: Bitnami Bot --- bitnami/postgresql/18/debian-12/Dockerfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/bitnami/postgresql/18/debian-12/Dockerfile b/bitnami/postgresql/18/debian-12/Dockerfile index 5ec12edc50cc..7e66f40548b9 100644 --- a/bitnami/postgresql/18/debian-12/Dockerfile +++ b/bitnami/postgresql/18/debian-12/Dockerfile @@ -9,7 +9,7 @@ ARG TARGETARCH ARG WITH_ALL_LOCALES="no" LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \ - org.opencontainers.image.created="2025-09-25T18:59:31Z" \ + org.opencontainers.image.created="2025-09-29T12:03:51Z" \ org.opencontainers.image.description="Application packaged by Broadcom, Inc." \ org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/postgresql/README.md" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/postgresql" \ @@ -30,7 +30,7 @@ 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-18.0.0-0-linux-${OS_ARCH}-debian-12" \ + "postgresql-18.0.0-1-linux-${OS_ARCH}-debian-12" \ ) ; \ for COMPONENT in "${COMPONENTS[@]}"; do \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \ @@ -48,17 +48,14 @@ RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true RUN update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX && \ DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales && \ echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen +RUN /opt/bitnami/scripts/locales/generate-locales.sh RUN uninstall_packages curl COPY rootfs / RUN /opt/bitnami/scripts/postgresql/postunpack.sh -RUN update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX && \ - DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales && \ - echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen -RUN /opt/bitnami/scripts/locales/generate-locales.sh ENV APP_VERSION="18.0.0" \ BITNAMI_APP_NAME="postgresql" \ - IMAGE_REVISION="0" \ + IMAGE_REVISION="1" \ LANG="en_US.UTF-8" \ LANGUAGE="en_US:en" \ NSS_WRAPPER_LIB="/opt/bitnami/common/lib/libnss_wrapper.so" \