[bitnami/elasticsearch] Release 8.6.2-debian-11-r5 (#26042)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-03-02 09:43:41 +01:00
committed by GitHub
parent 1da9190b12
commit fae3b26f44
3 changed files with 6 additions and 6 deletions

View File

@@ -5,10 +5,10 @@ ARG JAVA_EXTRA_SECURITY_DIR="/bitnami/java/extra-security"
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-02-26T20:26:12Z" \
org.opencontainers.image.created="2023-03-02T07:57:57Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="8.6.2-debian-11-r4" \
org.opencontainers.image.ref.name="8.6.2-debian-11-r5" \
org.opencontainers.image.title="elasticsearch" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="8.6.2"
@@ -25,7 +25,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN install_packages ca-certificates curl libasound2-dev libc6 libfreetype6 libfreetype6-dev libgcc1 procps zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"yq-4.31.1-0-linux-${OS_ARCH}-debian-11" \
"yq-4.31.2-0-linux-${OS_ARCH}-debian-11" \
"java-17.0.6-10-2-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-2-linux-${OS_ARCH}-debian-11" \
"elasticsearch-8.6.2-1-linux-${OS_ARCH}-debian-11" \

View File

@@ -22,9 +22,9 @@
},
"yq": {
"arch": "amd64",
"digest": "83bb15cc1ad5d561294aa058542a9160685b976c866a303208c10e7c08634a8f",
"digest": "498dd1e7ac81a0e41ac2761d6708e425bab6cbbf37c93e47ce8df12000e8a4d3",
"distro": "debian-11",
"type": "NAMI",
"version": "4.31.1-0"
"version": "4.31.2-0"
}
}

View File

@@ -18,7 +18,7 @@ set -o pipefail
# Override default files in the Java security directory. This is used for
# custom base images (with custom CA certificates or block lists is used)
if ! is_dir_empty "$JAVA_EXTRA_SECURITY_DIR"; then
if [[ -n "${JAVA_EXTRA_SECURITY_DIR:-}" ]] && ! is_dir_empty "$JAVA_EXTRA_SECURITY_DIR"; then
info "Adding custom CAs to the Java security folder"
cp -Lr "$JAVA_EXTRA_SECURITY_DIR" /opt/bitnami/java/lib/security
fi