diff --git a/bitnami/os-shell/12/debian-12/Dockerfile b/bitnami/os-shell/12/debian-12/Dockerfile index b0ce5a0a74fe..969081adef4d 100644 --- a/bitnami/os-shell/12/debian-12/Dockerfile +++ b/bitnami/os-shell/12/debian-12/Dockerfile @@ -7,7 +7,7 @@ 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-02-19T03:37:11Z" \ + org.opencontainers.image.created="2026-03-12T12:25:20Z" \ org.opencontainers.image.description="Application packaged by Broadcom, Inc." \ org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/os-shell/README.md" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/os-shell" \ @@ -28,11 +28,11 @@ 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=( \ - "yq-4.52.4-0-linux-${OS_ARCH}-debian-12" \ - "wait-for-port-1.0.10-7-linux-${OS_ARCH}-debian-12" \ - "render-template-1.0.9-162-linux-${OS_ARCH}-debian-12" \ - "ini-file-1.4.9-7-linux-${OS_ARCH}-debian-12" \ - "scuttle-1.1.14-0-linux-${OS_ARCH}-debian-12" \ + "yq-4.52.4-1-linux-${OS_ARCH}-debian-12" \ + "wait-for-port-1.0.10-8-linux-${OS_ARCH}-debian-12" \ + "render-template-1.0.9-163-linux-${OS_ARCH}-debian-12" \ + "ini-file-1.4.9-8-linux-${OS_ARCH}-debian-12" \ + "scuttle-1.1.14-1-linux-${OS_ARCH}-debian-12" \ ) ; \ for COMPONENT in "${COMPONENTS[@]}"; do \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \ @@ -45,11 +45,12 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \ done RUN apt-get update && apt-get upgrade -y && \ apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives +RUN useradd -r -u 1001 -g root os-shell RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true ENV APP_VERSION="12" \ BITNAMI_APP_NAME="os-shell" \ - IMAGE_REVISION="60" \ + IMAGE_REVISION="61" \ PATH="/opt/bitnami/common/bin:$PATH" USER 1001 diff --git a/bitnami/os-shell/README.md b/bitnami/os-shell/README.md index e01359f46b7b..a14a73a0764c 100644 --- a/bitnami/os-shell/README.md +++ b/bitnami/os-shell/README.md @@ -1,7 +1,5 @@ # Bitnami Secure Image for OS Shell + Utility -## What is OS Shell + Utility? - > OS Shell + Utility is a general-purpose minimal image, well-suited for helper tasks such as running initialization in initContainers from Helm charts. [Overview of OS Shell + Utility](https://bitnami.com) @@ -58,6 +56,8 @@ docker build -t bitnami/APP:latest . ## Configuration +The following section describes how to run commands + ### Running commands To run commands inside this container you can use `docker run`, for example to execute `echo Hello world` you can follow the example below: