From a6fc3b6479aee660df0b2f5c82a1ae8b48ccfe31 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 5 Feb 2026 16:19:08 +0100 Subject: [PATCH] [bitnami/apisix] Release 3.15.0-debian-12-r0 (#90464) Signed-off-by: Bitnami Bot --- bitnami/apisix/3/debian-12/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bitnami/apisix/3/debian-12/Dockerfile b/bitnami/apisix/3/debian-12/Dockerfile index 06689f952215..e38047db728c 100644 --- a/bitnami/apisix/3/debian-12/Dockerfile +++ b/bitnami/apisix/3/debian-12/Dockerfile @@ -7,13 +7,13 @@ 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-01-28T12:43:41Z" \ + org.opencontainers.image.created="2026-02-05T15:08:18Z" \ org.opencontainers.image.description="Application packaged by Broadcom, Inc." \ org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/apisix/README.md" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/apisix" \ org.opencontainers.image.title="apisix" \ org.opencontainers.image.vendor="Broadcom, Inc." \ - org.opencontainers.image.version="3.14.1" + org.opencontainers.image.version="3.15.0" ENV HOME="/" \ OS_ARCH="${TARGETARCH:-amd64}" \ @@ -23,12 +23,12 @@ 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 libcrypt1 libgcc-s1 libpcre3 libstdc++6 libyaml-0-2 procps zlib1g +RUN install_packages ca-certificates curl libcrypt1 libgcc-s1 libpcre2-8-0 libpcre3 libstdc++6 libyaml-0-2 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=( \ - "apisix-3.14.1-0-linux-${OS_ARCH}-debian-12" \ + "apisix-3.15.0-0-linux-${OS_ARCH}-debian-12" \ ) ; \ for COMPONENT in "${COMPONENTS[@]}"; do \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \ @@ -46,9 +46,9 @@ RUN chmod g+rwX /opt/bitnami/apisix/conf && mkdir -p /usr/local/apisix/logs && c RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true RUN uninstall_packages curl -ENV APP_VERSION="3.14.1" \ +ENV APP_VERSION="3.15.0" \ BITNAMI_APP_NAME="apisix" \ - IMAGE_REVISION="4" \ + IMAGE_REVISION="0" \ LUA_PATH="/opt/bitnami/apisix/deps/share/lua/5.1/?/init.lua" \ PATH="/opt/bitnami/apisix/bin:/opt/bitnami/apisix/openresty/bin:/opt/bitnami/apisix/openresty/luajit/bin:/opt/bitnami/apisix/openresty/nginx/sbin:/opt/bitnami/apisix/openresty/luarocks/bin:$PATH"