[bitnami/bitnami-shell] Release 11-debian-11-r39 (#9099)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2022-10-06 13:47:32 +02:00
committed by GitHub
parent c9c61c37db
commit 4f06056545
2 changed files with 20 additions and 7 deletions

View File

@@ -4,25 +4,38 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="11-debian-11-r38" \
org.opencontainers.image.ref.name="11-debian-11-r39" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/bitnami-shell" \
org.opencontainers.image.title="bitnami-shell" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="11"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
OS_FLAVOUR="debian-11" \
OS_NAME="linux"
COPY prebuildfs /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages curl procps
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
fi && \
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
rm -rf "${COMPONENT}.tar.gz{,sha256}" ; \
done
RUN apt-get autoremove --purge -y curl && \
apt-get update && apt-get upgrade -y && \
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
ENV APP_VERSION="11" \
BITNAMI_APP_NAME="bitnami-shell" \
HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
OS_FLAVOUR="debian-11" \
OS_NAME="linux"
BITNAMI_APP_NAME="bitnami-shell"
USER 1001

View File

@@ -28,7 +28,7 @@ $ docker run --name bitnami-shell bitnami/bitnami-shell:latest
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`11`, `11-debian-11`, `11-debian-11-r38`, `latest` (11/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/bitnami-shell/11/debian-11/Dockerfile)
* [`11`, `11-debian-11`, `11-debian-11-r39`, `latest` (11/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/bitnami-shell/11/debian-11/Dockerfile)
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).