From f67a36ce63bf4fed22e89599619042b407a3fe8b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 28 Nov 2024 11:36:51 +0100 Subject: [PATCH] [bitnami/appsmith] Release appsmith-1.49.0-debian-12-r0 (#75280) Signed-off-by: Bitnami Bot --- bitnami/appsmith/1/debian-12/Dockerfile | 20 +++++++++---------- .../appsmith/1/debian-12/docker-compose.yml | 6 +++--- .../opt/bitnami/.bitnami_components.json | 10 +++++----- bitnami/appsmith/1/debian-12/tags-info.yaml | 2 +- bitnami/appsmith/README.md | 2 +- bitnami/appsmith/docker-compose.yml | 6 +++--- 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/bitnami/appsmith/1/debian-12/Dockerfile b/bitnami/appsmith/1/debian-12/Dockerfile index 4397b2b495f6..bddb03872c31 100644 --- a/bitnami/appsmith/1/debian-12/Dockerfile +++ b/bitnami/appsmith/1/debian-12/Dockerfile @@ -8,15 +8,15 @@ ARG TARGETARCH LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \ org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \ - org.opencontainers.image.created="2024-11-12T17:00:12Z" \ + org.opencontainers.image.created="2024-11-28T09:37:38Z" \ org.opencontainers.image.description="Application packaged by Broadcom, Inc." \ org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/appsmith/README.md" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="1.48.0-debian-12-r7" \ + org.opencontainers.image.ref.name="1.49.0-debian-12-r0" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/appsmith" \ org.opencontainers.image.title="appsmith" \ org.opencontainers.image.vendor="Broadcom, Inc." \ - org.opencontainers.image.version="1.48.0" + org.opencontainers.image.version="1.49.0" ENV HOME="/" \ OS_ARCH="${TARGETARCH:-amd64}" \ @@ -26,17 +26,17 @@ ENV HOME="/" \ COPY prebuildfs / SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"] # Install required system packages and dependencies -RUN install_packages acl ca-certificates curl gettext libbz2-1.0 libcom-err2 libcrypt1 libffi8 libgcc-s1 libgeoip1 libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblzma5 libncursesw6 libnsl2 libpcre3 libreadline8 libsqlite3-0 libssl3 libstdc++6 libtinfo6 libtirpc3 openssl procps zlib1g +RUN install_packages acl ca-certificates curl gettext libbz2-1.0 libcrypt1 libffi8 libgcc-s1 libgeoip1 liblzma5 libncursesw6 libpcre3 libreadline8 libsqlite3-0 libssl3 libstdc++6 libtinfo6 openssl procps zlib1g RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \ COMPONENTS=( \ "render-template-1.0.7-7-linux-${OS_ARCH}-debian-12" \ - "python-3.12.7-4-linux-${OS_ARCH}-debian-12" \ + "python-3.13.0-7-linux-${OS_ARCH}-debian-12" \ "wait-for-port-1.0.8-7-linux-${OS_ARCH}-debian-12" \ - "node-20.18.0-2-linux-${OS_ARCH}-debian-12" \ - "nginx-1.27.2-1-linux-${OS_ARCH}-debian-12" \ - "mongodb-shell-2.3.3-0-linux-${OS_ARCH}-debian-12" \ + "node-20.18.1-1-linux-${OS_ARCH}-debian-12" \ + "nginx-1.27.3-0-linux-${OS_ARCH}-debian-12" \ + "mongodb-shell-2.3.4-0-linux-${OS_ARCH}-debian-12" \ "java-17.0.13-12-1-linux-${OS_ARCH}-debian-12" \ - "appsmith-1.48.0-6-linux-${OS_ARCH}-debian-12" \ + "appsmith-1.49.0-0-linux-${OS_ARCH}-debian-12" \ ) ; \ for COMPONENT in "${COMPONENTS[@]}"; do \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \ @@ -55,7 +55,7 @@ RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true COPY rootfs / RUN /opt/bitnami/scripts/nginx/postunpack.sh RUN /opt/bitnami/scripts/appsmith/postunpack.sh -ENV APP_VERSION="1.48.0" \ +ENV APP_VERSION="1.49.0" \ BITNAMI_APP_NAME="appsmith" \ NGINX_HTTPS_PORT_NUMBER="" \ NGINX_HTTP_PORT_NUMBER="" \ diff --git a/bitnami/appsmith/1/debian-12/docker-compose.yml b/bitnami/appsmith/1/debian-12/docker-compose.yml index f63255cf81a0..519abe035f40 100644 --- a/bitnami/appsmith/1/debian-12/docker-compose.yml +++ b/bitnami/appsmith/1/debian-12/docker-compose.yml @@ -3,7 +3,7 @@ services: mongodb: - image: docker.io/bitnami/mongodb:8.0 + image: docker.io/bitnami/mongodb:latest volumes: - 'mongodb_data:/bitnami/mongodb' environment: @@ -16,7 +16,7 @@ services: - MONGODB_REPLICA_SET_KEY=replicasetkey123 mongodb-secondary: - image: docker.io/bitnami/mongodb:8.0 + image: docker.io/bitnami/mongodb:latest depends_on: - mongodb volumes: @@ -28,7 +28,7 @@ services: - MONGODB_INITIAL_PRIMARY_ROOT_PASSWORD=password123 - MONGODB_REPLICA_SET_KEY=replicasetkey123 redis: - image: docker.io/bitnami/redis:7.4 + image: docker.io/bitnami/redis:latest volumes: - 'redis_data:/bitnami/redis' environment: diff --git a/bitnami/appsmith/1/debian-12/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/appsmith/1/debian-12/prebuildfs/opt/bitnami/.bitnami_components.json index 36d9e6e6988b..5ee4e2522afe 100644 --- a/bitnami/appsmith/1/debian-12/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/appsmith/1/debian-12/prebuildfs/opt/bitnami/.bitnami_components.json @@ -3,7 +3,7 @@ "arch": "amd64", "distro": "debian-12", "type": "NAMI", - "version": "1.48.0-6" + "version": "1.49.0-0" }, "java": { "arch": "amd64", @@ -15,25 +15,25 @@ "arch": "amd64", "distro": "debian-12", "type": "NAMI", - "version": "2.3.3-0" + "version": "2.3.4-0" }, "nginx": { "arch": "amd64", "distro": "debian-12", "type": "NAMI", - "version": "1.27.2-1" + "version": "1.27.3-0" }, "node": { "arch": "amd64", "distro": "debian-12", "type": "NAMI", - "version": "20.18.0-2" + "version": "20.18.1-1" }, "python": { "arch": "amd64", "distro": "debian-12", "type": "NAMI", - "version": "3.12.7-4" + "version": "3.13.0-7" }, "render-template": { "arch": "amd64", diff --git a/bitnami/appsmith/1/debian-12/tags-info.yaml b/bitnami/appsmith/1/debian-12/tags-info.yaml index 2195d3b1f000..296c4a6105b6 100644 --- a/bitnami/appsmith/1/debian-12/tags-info.yaml +++ b/bitnami/appsmith/1/debian-12/tags-info.yaml @@ -1,5 +1,5 @@ rolling-tags: - "1" - 1-debian-12 -- 1.48.0 +- 1.49.0 - latest diff --git a/bitnami/appsmith/README.md b/bitnami/appsmith/README.md index f2262da4a162..8c3d4edc3c5b 100644 --- a/bitnami/appsmith/README.md +++ b/bitnami/appsmith/README.md @@ -26,7 +26,7 @@ Looking to use Appsmith in production? Try [VMware Tanzu Application Catalog](ht ## Supported tags and respective `Dockerfile` links -Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.vmware.com/en/VMware-Tanzu-Application-Catalog/services/tutorials/GUID-understand-rolling-tags-containers-index.html). +Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://techdocs.broadcom.com/us/en/vmware-tanzu/application-catalog/tanzu-application-catalog/services/tac-doc/apps-tutorials-understand-rolling-tags-containers-index.html). You can see the equivalence between the different tags by taking a look at the `tags-info.yaml` file present in the branch folder, i.e `bitnami/ASSET/BRANCH/DISTRO/tags-info.yaml`. diff --git a/bitnami/appsmith/docker-compose.yml b/bitnami/appsmith/docker-compose.yml index f63255cf81a0..519abe035f40 100644 --- a/bitnami/appsmith/docker-compose.yml +++ b/bitnami/appsmith/docker-compose.yml @@ -3,7 +3,7 @@ services: mongodb: - image: docker.io/bitnami/mongodb:8.0 + image: docker.io/bitnami/mongodb:latest volumes: - 'mongodb_data:/bitnami/mongodb' environment: @@ -16,7 +16,7 @@ services: - MONGODB_REPLICA_SET_KEY=replicasetkey123 mongodb-secondary: - image: docker.io/bitnami/mongodb:8.0 + image: docker.io/bitnami/mongodb:latest depends_on: - mongodb volumes: @@ -28,7 +28,7 @@ services: - MONGODB_INITIAL_PRIMARY_ROOT_PASSWORD=password123 - MONGODB_REPLICA_SET_KEY=replicasetkey123 redis: - image: docker.io/bitnami/redis:7.4 + image: docker.io/bitnami/redis:latest volumes: - 'redis_data:/bitnami/redis' environment: