[bitnami/dex] Release 2.35.1-debian-11-r1 (#9167)

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-07 02:08:10 +02:00
committed by GitHub
parent feaed3c0bc
commit 8de907e9e6
3 changed files with 16 additions and 11 deletions

View File

@@ -4,7 +4,7 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \ LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \ org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="2.35.1-debian-11-r0" \ org.opencontainers.image.ref.name="2.35.1-debian-11-r1" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/dex" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/dex" \
org.opencontainers.image.title="dex" \ org.opencontainers.image.title="dex" \
org.opencontainers.image.vendor="VMware, Inc." \ org.opencontainers.image.vendor="VMware, Inc." \
@@ -20,13 +20,18 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies # Install required system packages and dependencies
RUN install_packages ca-certificates curl procps RUN install_packages ca-certificates curl procps
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
if [ ! -f dex-2.35.1-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ COMPONENTS=( \
curl -SsLf https://downloads.bitnami.com/files/stacksmith/dex-2.35.1-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ "dex-2.35.1-1-linux-${OS_ARCH}-debian-11" \
curl -SsLf https://downloads.bitnami.com/files/stacksmith/dex-2.35.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ ) && \
fi && \ for COMPONENT in "${COMPONENTS[@]}"; do \
sha256sum -c dex-2.35.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \
tar -zxf dex-2.35.1-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
rm -rf dex-2.35.1-0-linux-${OS_ARCH}-debian-11.tar.gz dex-2.35.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 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 update && apt-get upgrade -y && \ RUN apt-get update && apt-get upgrade -y && \
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
RUN useradd -r -u 1001 -g root dex RUN useradd -r -u 1001 -g root dex

View File

@@ -1,9 +1,9 @@
{ {
"dex": { "dex": {
"arch": "amd64", "arch": "amd64",
"digest": "4c05460e9df4ef77b836fdcff3312bd94039c5fb5410128da528b2928ef4b4e0", "digest": "f342f60efa7a780afeb88c3f71938fd9d45d6c32ce6d38e12e79c65e9aa8f91d",
"distro": "debian-11", "distro": "debian-11",
"type": "NAMI", "type": "NAMI",
"version": "2.35.1-0" "version": "2.35.1-1"
} }
} }

View File

@@ -35,7 +35,7 @@ $ docker-compose up -d
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/). 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/).
* [`2`, `2-debian-11`, `2.35.1`, `2.35.1-debian-11-r0`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/dex/2/debian-11/ Dockerfile) * [`2`, `2-debian-11`, `2.35.1`, `2.35.1-debian-11-r1`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/dex/2/debian-11/ Dockerfile)
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers). Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).