[bitnami/kaniko] Release 1.25.5-debian-12-r0 (#88476)
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
parent
ea94c15138
commit
87e9e63dad
|
|
@ -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-11T08:44:29Z" \
|
||||
org.opencontainers.image.created="2025-11-20T13:01:49Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/kaniko/README.md" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/kaniko" \
|
||||
org.opencontainers.image.title="kaniko" \
|
||||
org.opencontainers.image.vendor="Broadcom, Inc." \
|
||||
org.opencontainers.image.version="1.25.4"
|
||||
org.opencontainers.image.version="1.25.5"
|
||||
|
||||
ENV HOME="/root" \
|
||||
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
|
|
@ -28,7 +28,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=( \
|
||||
"kaniko-1.25.4-0-linux-${OS_ARCH}-debian-12" \
|
||||
"kaniko-1.25.5-0-linux-${OS_ARCH}-debian-12" \
|
||||
) ; \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
|
@ -44,7 +44,7 @@ RUN apt-get update && apt-get upgrade -y && \
|
|||
RUN uninstall_packages curl
|
||||
|
||||
RUN mkdir -p /kaniko/.docker /etc && for bin in /opt/bitnami/kaniko/bin/*; do ln -s $bin /kaniko/; done && chmod 775 /kaniko && cp /opt/bitnami/kaniko/nsswitch/nsswitch.conf /etc/nsswitch.conf
|
||||
ENV APP_VERSION="1.25.4" \
|
||||
ENV APP_VERSION="1.25.5" \
|
||||
BITNAMI_APP_NAME="kaniko" \
|
||||
DOCKER_CONFIG="/kaniko/.docker" \
|
||||
DOCKER_CREDENTIAL_GCR_CONFIG="/kaniko/.config/gcloud/docker_credential_gcr_config.json" \
|
||||
|
|
|
|||
|
|
@ -38,6 +38,38 @@ You can see the equivalence between the different tags by taking a look at the `
|
|||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
## Choosing between the _Standard_ and _Minimal_ image
|
||||
|
||||
This asset is available in two flavors: _Standard_ and _Minimal_; designed to address different use cases and operational needs.
|
||||
|
||||
### Standard images
|
||||
|
||||
The standard images are full-featured, production-ready containers built on top of secure base operating systems. They include:
|
||||
|
||||
- The complete runtime and commonly used system tools.
|
||||
- A familiar Linux environment (shell, package manager, debugging utilities).
|
||||
- Full compatibility with most CI/CD pipelines and existing workloads.
|
||||
|
||||
Recommended for:
|
||||
|
||||
- Development and testing environments.
|
||||
- Workloads requiring package installation or debugging tools.
|
||||
- Applications that depend on system utilities or shared libraries.
|
||||
|
||||
### Minimal images
|
||||
|
||||
The minimal images are optimized, distroless-style containers derived from a stripped-down base. They only ship what’s strictly necessary to run the application; no shell, package manager, or extra libraries. They provide:
|
||||
|
||||
- Smaller size: Faster pull and startup times.
|
||||
- Reduced attack surface: Fewer components and potential vulnerabilities.
|
||||
- Simpler maintenance: Fewer dependencies to patch or update.
|
||||
|
||||
Recommended for:
|
||||
|
||||
- Production environments prioritizing performance and security.
|
||||
- Regulated or security-sensitive workloads
|
||||
- Containers built via multi-stage builds (e.g., Golang static binaries).
|
||||
|
||||
## Get this image
|
||||
|
||||
The recommended way to get the Bitnami Kaniko Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/kaniko).
|
||||
|
|
|
|||
Loading…
Reference in New Issue