[bitnami/google-cloud-sdk] Release 0.401.0-debian-11-r0 (#5581)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
4c72ef0614
commit
ce79610e6f
|
|
@ -4,11 +4,11 @@ ARG TARGETARCH
|
|||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="0.400.0-debian-11-r1" \
|
||||
org.opencontainers.image.ref.name="0.401.0-debian-11-r0" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/google-cloud-sdk" \
|
||||
org.opencontainers.image.title="google-cloud-sdk" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="0.400.0"
|
||||
org.opencontainers.image.version="0.401.0"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
|
|
@ -20,27 +20,27 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl gzip libbz2-1.0 libc6 libcom-err2 libcrypt1 libffi7 libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblzma5 libncursesw6 libnsl2 libreadline8 libsqlite3-0 libssl1.1 libtinfo6 libtirpc3 procps tar zlib1g
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f python-3.7.13-167-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/python-3.7.13-167-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/python-3.7.13-167-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
if [ ! -f python-3.7.14-1-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/python-3.7.14-1-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/python-3.7.14-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c python-3.7.13-167-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf python-3.7.13-167-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf python-3.7.13-167-linux-${OS_ARCH}-debian-11.tar.gz
|
||||
sha256sum -c python-3.7.14-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf python-3.7.14-1-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf python-3.7.14-1-linux-${OS_ARCH}-debian-11.tar.gz
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f google-cloud-sdk-0.400.0-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/google-cloud-sdk-0.400.0-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/google-cloud-sdk-0.400.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
if [ ! -f google-cloud-sdk-0.401.0-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/google-cloud-sdk-0.401.0-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/google-cloud-sdk-0.401.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c google-cloud-sdk-0.400.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf google-cloud-sdk-0.400.0-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf google-cloud-sdk-0.400.0-0-linux-${OS_ARCH}-debian-11.tar.gz
|
||||
sha256sum -c google-cloud-sdk-0.401.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf google-cloud-sdk-0.401.0-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf google-cloud-sdk-0.401.0-0-linux-${OS_ARCH}-debian-11.tar.gz
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
RUN mkdir /.config /.gsutil && chmod g+rwX /.config /.gsutil
|
||||
|
||||
ENV APP_VERSION="0.400.0" \
|
||||
ENV APP_VERSION="0.401.0" \
|
||||
BITNAMI_APP_NAME="google-cloud-sdk" \
|
||||
PATH="/opt/bitnami/python/bin:/opt/bitnami/google-cloud-sdk/bin:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"google-cloud-sdk": {
|
||||
"arch": "amd64",
|
||||
"digest": "fb62b8e430571214208d06b59d29616deae94397914f4170b0426d5d4938d46c",
|
||||
"digest": "d74120e143fb54f64acebbafa39877fb4d0eec43d06b48dea689a31758628ca0",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "0.400.0-0"
|
||||
"version": "0.401.0-0"
|
||||
},
|
||||
"python": {
|
||||
"arch": "amd64",
|
||||
"digest": "39b3ee57881cc28df099e5c7d2ab7e945b259ab0821be1961a522df6b70c2832",
|
||||
"digest": "bd16eb35059f7ee2749292e8db705e1149a7bec2d525c5ea6f2a074645eee738",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "3.7.13-167"
|
||||
"version": "3.7.14-1"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
rolling-tags:
|
||||
- "0"
|
||||
- "0-debian-11"
|
||||
- "0.400.0"
|
||||
- "0.401.0"
|
||||
- "latest"
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ $ docker run --name google-cloud-sdk bitnami/google-cloud-sdk: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/).
|
||||
|
||||
|
||||
* [`0`, `0-debian-11`, `0.400.0`, `0.400.0-debian-11-r1`, `latest` (0/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/google-cloud-sdk/0/debian-11/Dockerfile)
|
||||
* [`0`, `0-debian-11`, `0.401.0`, `0.401.0-debian-11-r0`, `latest` (0/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/google-cloud-sdk/0/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue