From 3754ffe28152eb369b8da89e11d101a2eb4c2ce9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 8 Sep 2022 13:34:02 +0200 Subject: [PATCH] [bitnami/parse-dashboard] Release 3.3.0-debian-11-r34 (#5627) Signed-off-by: Bitnami Containers Signed-off-by: Bitnami Containers --- .../parse-dashboard/3/debian-11/Dockerfile | 57 +++++++++++-------- .../opt/bitnami/.bitnami_components.json | 4 +- bitnami/parse-dashboard/README.md | 4 +- 3 files changed, 36 insertions(+), 29 deletions(-) diff --git a/bitnami/parse-dashboard/3/debian-11/Dockerfile b/bitnami/parse-dashboard/3/debian-11/Dockerfile index 240e83ba64c3..1d06e06632a9 100644 --- a/bitnami/parse-dashboard/3/debian-11/Dockerfile +++ b/bitnami/parse-dashboard/3/debian-11/Dockerfile @@ -1,49 +1,56 @@ FROM docker.io/bitnami/minideb:bullseye -ENV HOME="/" \ - OS_ARCH="amd64" \ - OS_FLAVOUR="debian-11" \ - OS_NAME="linux" + +ARG TARGETARCH LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \ org.opencontainers.image.description="Application packaged by Bitnami" \ - org.opencontainers.image.ref.name="3.3.0-debian-11-r33" \ + org.opencontainers.image.ref.name="3.3.0-debian-11-r34" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/parse-dashboard" \ org.opencontainers.image.title="parse-dashboard" \ org.opencontainers.image.vendor="VMware, Inc." \ org.opencontainers.image.version="3.3.0" +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 acl ca-certificates curl gzip jq libbz2-1.0 libc6 libcom-err2 libcrypt1 libffi7 libgcc-s1 libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblzma5 libncursesw6 libnsl2 libreadline8 libsqlite3-0 libssl1.1 libstdc++6 libtinfo6 libtirpc3 procps tar zlib1g RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f python-3.8.13-167-linux-amd64-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/python-3.8.13-167-linux-amd64-debian-11.tar.gz -O ; \ + if [ ! -f python-3.8.14-1-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/python-3.8.14-1-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/python-3.8.14-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ fi && \ - echo "6e21552dc6c19b01247f3ec7bcd0401e6192519fe206e136e205ac6c3b842e7b python-3.8.13-167-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \ - tar -zxf python-3.8.13-167-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf python-3.8.13-167-linux-amd64-debian-11.tar.gz + sha256sum -c python-3.8.14-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ + tar -zxf python-3.8.14-1-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf python-3.8.14-1-linux-${OS_ARCH}-debian-11.tar.gz RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f node-16.17.0-1-linux-amd64-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/node-16.17.0-1-linux-amd64-debian-11.tar.gz -O ; \ + if [ ! -f node-16.17.0-1-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/node-16.17.0-1-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/node-16.17.0-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ fi && \ - echo "8e8fb9f8c5852147b47c1ae5c653292774ec8c15623f2f6859fad71a8bd208a9 node-16.17.0-1-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \ - tar -zxf node-16.17.0-1-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf node-16.17.0-1-linux-amd64-debian-11.tar.gz + sha256sum -c node-16.17.0-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ + tar -zxf node-16.17.0-1-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf node-16.17.0-1-linux-${OS_ARCH}-debian-11.tar.gz RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f parse-dashboard-3.3.0-154-linux-amd64-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/parse-dashboard-3.3.0-154-linux-amd64-debian-11.tar.gz -O ; \ + if [ ! -f parse-dashboard-3.3.0-154-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/parse-dashboard-3.3.0-154-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/parse-dashboard-3.3.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ fi && \ - echo "603558f92ae2ccedec5bc2875bd59026608f81c988a43a41a124bc86153eb331 parse-dashboard-3.3.0-154-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \ - tar -zxf parse-dashboard-3.3.0-154-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf parse-dashboard-3.3.0-154-linux-amd64-debian-11.tar.gz + sha256sum -c parse-dashboard-3.3.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ + tar -zxf parse-dashboard-3.3.0-154-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf parse-dashboard-3.3.0-154-linux-${OS_ARCH}-debian-11.tar.gz RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ - if [ ! -f gosu-1.14.0-154-linux-amd64-debian-11.tar.gz ]; then \ - curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-amd64-debian-11.tar.gz -O ; \ + if [ ! -f gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz ]; then \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz -O ; \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \ fi && \ - echo "e36c3d90f4fbfbe989f40947fa7c8ab817f12fcf97d3aef893c753a20ce976ab gosu-1.14.0-154-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \ - tar -zxf gosu-1.14.0-154-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf gosu-1.14.0-154-linux-amd64-debian-11.tar.gz + sha256sum -c gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \ + tar -zxf gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf gosu-1.14.0-154-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 diff --git a/bitnami/parse-dashboard/3/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/parse-dashboard/3/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 47862555cfb4..c6ce2fb5802b 100644 --- a/bitnami/parse-dashboard/3/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/parse-dashboard/3/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -22,9 +22,9 @@ }, "python": { "arch": "amd64", - "digest": "6e21552dc6c19b01247f3ec7bcd0401e6192519fe206e136e205ac6c3b842e7b", + "digest": "b81946d0fc75ce5dd9518d601920b6da4b24fbd87ca81a4cbd59404dd893764f", "distro": "debian-11", "type": "NAMI", - "version": "3.8.13-167" + "version": "3.8.14-1" } } \ No newline at end of file diff --git a/bitnami/parse-dashboard/README.md b/bitnami/parse-dashboard/README.md index 15af8083257e..69cd466f4129 100644 --- a/bitnami/parse-dashboard/README.md +++ b/bitnami/parse-dashboard/README.md @@ -37,8 +37,8 @@ Non-root container images add an extra layer of security and are generally recom 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/). -* [`4`, `4-debian-11`, `4.1.4`, `4.1.4-debian-11-r24`, `latest` (4/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/parse-dashboard/4/debian-11/Dockerfile) -* [`3`, `3-debian-11`, `3.3.0`, `3.3.0-debian-11-r33` (3/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/parse-dashboard/3/debian-11/Dockerfile) +* [`4`, `4-debian-11`, `4.1.4`, `4.1.4-debian-11-r25`, `latest` (4/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/parse-dashboard/4/debian-11/Dockerfile) +* [`3`, `3-debian-11`, `3.3.0`, `3.3.0-debian-11-r34` (3/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/parse-dashboard/3/debian-11/Dockerfile) Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).