[bitnami/golang] Release 1.25.5-debian-12-r0 (#88669)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot 2025-12-02 22:37:17 +01:00 committed by GitHub
parent a713a23187
commit ad5ed82a77
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-11-12T18:44:37Z" \
org.opencontainers.image.created="2025-12-02T21:14:13Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/golang/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/golang" \
org.opencontainers.image.title="golang" \
org.opencontainers.image.vendor="Broadcom, Inc." \
org.opencontainers.image.version="1.25.4"
org.opencontainers.image.version="1.25.5"
ENV OS_ARCH="${TARGETARCH:-amd64}" \
OS_FLAVOUR="debian-12" \
@ -27,7 +27,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=( \
"golang-1.25.4-0-linux-${OS_ARCH}-debian-12" \
"golang-1.25.5-0-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@ -43,11 +43,11 @@ RUN apt-get update && apt-get upgrade -y && \
RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true
RUN mkdir -p "/go/src" "/go/bin" && chmod -R 777 "/go"
ENV APP_VERSION="1.25.4" \
ENV APP_VERSION="1.25.5" \
BITNAMI_APP_NAME="golang" \
GOCACHE="/go/.cache" \
GOPATH="/go" \
IMAGE_REVISION="1" \
IMAGE_REVISION="0" \
PATH="/go/bin:/opt/bitnami/go/bin:$PATH"
WORKDIR $GOPATH