From 5c724beb2dfdd84cf38e1cdf43a2f6608e690cce Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 1 Dec 2023 13:14:19 +0100 Subject: [PATCH] [bitnami/neo4j] Release 5.14.0-debian-11-r0 (#53351) Signed-off-by: Bitnami Containers --- bitnami/neo4j/5/debian-11/Dockerfile | 24 +++++++++---------- .../opt/bitnami/.bitnami_components.json | 4 ++-- .../opt/bitnami/scripts/libbitnami.sh | 10 ++++---- .../debian-11/prebuildfs/usr/sbin/run-script | 2 +- bitnami/neo4j/5/debian-11/tags-info.yaml | 2 +- bitnami/neo4j/README.md | 2 +- 6 files changed, 22 insertions(+), 22 deletions(-) diff --git a/bitnami/neo4j/5/debian-11/Dockerfile b/bitnami/neo4j/5/debian-11/Dockerfile index 3371d3aebe77..d357b22e4ba6 100644 --- a/bitnami/neo4j/5/debian-11/Dockerfile +++ b/bitnami/neo4j/5/debian-11/Dockerfile @@ -8,13 +8,13 @@ ARG TARGETARCH LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \ org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \ - org.opencontainers.image.created="2023-11-03T13:51:34Z" \ + org.opencontainers.image.created="2023-12-01T11:42:55Z" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="5.13.0-debian-11-r1" \ + org.opencontainers.image.ref.name="5.14.0-debian-11-r0" \ org.opencontainers.image.title="neo4j" \ org.opencontainers.image.vendor="VMware, Inc." \ - org.opencontainers.image.version="5.13.0" + org.opencontainers.image.version="5.14.0" ENV HOME="/opt/bitnami/neo4j/.home" \ OS_ARCH="${TARGETARCH:-amd64}" \ @@ -22,21 +22,21 @@ ENV HOME="/opt/bitnami/neo4j/.home" \ OS_NAME="linux" COPY prebuildfs / -SHELL ["/bin/bash", "-o", "pipefail", "-c"] +SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"] # Install required system packages and dependencies RUN install_packages ca-certificates curl jq procps zlib1g -RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ +RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \ COMPONENTS=( \ - "java-17.0.9-11-1-linux-${OS_ARCH}-debian-11" \ - "neo4j-5.13.0-2-linux-${OS_ARCH}-debian-11" \ - ) && \ + "java-17.0.9-11-6-linux-${OS_ARCH}-debian-11" \ + "neo4j-5.14.0-0-linux-${OS_ARCH}-debian-11" \ + ) ; \ 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' && \ + 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 && \ @@ -47,7 +47,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/java/postunpack.sh RUN /opt/bitnami/scripts/neo4j/postunpack.sh -ENV APP_VERSION="5.13.0" \ +ENV APP_VERSION="5.14.0" \ BITNAMI_APP_NAME="neo4j" \ JAVA_HOME="/opt/bitnami/java" \ JAVA_OPTS="-Duser.home=/opt/bitnami/neo4j/.home" \ diff --git a/bitnami/neo4j/5/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/neo4j/5/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 784f0fd1f230..a1c2b92dbdd3 100644 --- a/bitnami/neo4j/5/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/neo4j/5/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -3,12 +3,12 @@ "arch": "amd64", "distro": "debian-11", "type": "NAMI", - "version": "17.0.9-11-1" + "version": "17.0.9-11-6" }, "neo4j": { "arch": "amd64", "distro": "debian-11", "type": "NAMI", - "version": "5.13.0-2" + "version": "5.14.0-0" } } \ No newline at end of file diff --git a/bitnami/neo4j/5/debian-11/prebuildfs/opt/bitnami/scripts/libbitnami.sh b/bitnami/neo4j/5/debian-11/prebuildfs/opt/bitnami/scripts/libbitnami.sh index 184de8a117e2..3853c789b2ea 100644 --- a/bitnami/neo4j/5/debian-11/prebuildfs/opt/bitnami/scripts/libbitnami.sh +++ b/bitnami/neo4j/5/debian-11/prebuildfs/opt/bitnami/scripts/libbitnami.sh @@ -44,10 +44,10 @@ print_welcome_page() { print_image_welcome_page() { local github_url="https://github.com/bitnami/containers" - log "" - log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" - log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" - log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" - log "" + info "" + info "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" + info "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" + info "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" + info "" } diff --git a/bitnami/neo4j/5/debian-11/prebuildfs/usr/sbin/run-script b/bitnami/neo4j/5/debian-11/prebuildfs/usr/sbin/run-script index 4ca0f897277e..b7a5bf1e50bf 100755 --- a/bitnami/neo4j/5/debian-11/prebuildfs/usr/sbin/run-script +++ b/bitnami/neo4j/5/debian-11/prebuildfs/usr/sbin/run-script @@ -10,7 +10,7 @@ fi script=$1 exit_code="${2:-96}" -fail_if_not_present="${3:-n}" +fail_if_not_present="${3:-y}" if test -f "$script"; then sh $script diff --git a/bitnami/neo4j/5/debian-11/tags-info.yaml b/bitnami/neo4j/5/debian-11/tags-info.yaml index 013f01328822..79d57318c6f2 100644 --- a/bitnami/neo4j/5/debian-11/tags-info.yaml +++ b/bitnami/neo4j/5/debian-11/tags-info.yaml @@ -1,5 +1,5 @@ rolling-tags: - "5" - 5-debian-11 -- 5.13.0 +- 5.14.0 - latest diff --git a/bitnami/neo4j/README.md b/bitnami/neo4j/README.md index 51afd95e1a05..98a9637a2cc9 100644 --- a/bitnami/neo4j/README.md +++ b/bitnami/neo4j/README.md @@ -27,7 +27,7 @@ You can find the default credentials and available configuration options in the * Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems. * With Bitnami images the latest bug fixes and features are available as soon as possible. * Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs. -* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading Linux distribution. +* All our images are based on [**minideb**](https://github.com/bitnami/minideb) -a minimalist Debian based container image that gives you a small base container image and the familiarity of a leading Linux distribution- or **scratch** -an explicitly empty image-. * All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DCT)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images. * Bitnami container images are released on a regular basis with the latest distribution packages available.