[bitnami/azure-cli] Release 2.78.0-debian-12-r0 (#87499)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot 2025-10-14 07:14:53 +02:00 committed by GitHub
parent d0070e1be8
commit 63538956d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 5 deletions

View File

@ -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="2025-10-11T13:12:26Z" \
org.opencontainers.image.created="2025-10-14T04:44:04Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/azure-cli/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/azure-cli" \
org.opencontainers.image.title="azure-cli" \
org.opencontainers.image.vendor="Broadcom, Inc." \
org.opencontainers.image.version="2.77.0"
org.opencontainers.image.version="2.78.0"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@ -29,7 +29,7 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
COMPONENTS=( \
"python-3.12.12-3-linux-${OS_ARCH}-debian-12" \
"azure-cli-2.77.0-0-linux-${OS_ARCH}-debian-12" \
"azure-cli-2.78.0-0-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@ -47,9 +47,9 @@ RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true
RUN mkdir /.azure /.azcopy && chmod g+rwX /.azure /.azcopy /bin
RUN uninstall_packages curl
ENV APP_VERSION="2.77.0" \
ENV APP_VERSION="2.78.0" \
BITNAMI_APP_NAME="azure-cli" \
IMAGE_REVISION="16" \
IMAGE_REVISION="0" \
PATH="/opt/bitnami/python/bin:/opt/bitnami/azure-cli/bin:/opt/bitnami/azure-cli/venv/bin:$PATH"
USER 1001