10.14.0-debian-10-r38 release

This commit is contained in:
Bitnami Bot
2022-03-02 06:22:46 +00:00
parent e65b6c2268
commit b8d7df9580
4 changed files with 13 additions and 14 deletions

View File

@@ -11,9 +11,9 @@ ARG JAVA_EXTRA_SECURITY_DIR="/bitnami/java/extra-security"
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages acl ca-certificates curl gzip libc6 procps tar zlib1g
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.14-6" --checksum 8e9d15dc54b3cf57e7f3b92efbb1e01ed07f002889034ec7703b62efb8265243
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wavefront-proxy" "10.14.0-4" --checksum 094ecacd602a2cc2025af36bcc133567b984aaad2ca1a7d085b68d731c2c136f
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-6" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.14-7" --checksum 900545c4f346a0ece8abf2caf64fd9d4ab7514967d4614d716bf7362b24f828b
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wavefront-proxy" "10.14.0-5" --checksum e21b3789875c53e13cdc5da0ec796b15ffdf90a9b1155f8e2d3bb17bc575280c
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-7" --checksum d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1
RUN apt-get update && apt-get upgrade -y && \
rm -r /var/lib/apt/lists /var/cache/apt/archives
RUN chmod g+rwX /opt/bitnami
@@ -22,7 +22,7 @@ COPY rootfs /
RUN /opt/bitnami/scripts/java/postunpack.sh
RUN /opt/bitnami/scripts/wavefront-proxy/postunpack.sh
ENV BITNAMI_APP_NAME="wavefront-proxy" \
BITNAMI_IMAGE_VERSION="10.14.0-debian-10-r37" \
BITNAMI_IMAGE_VERSION="10.14.0-debian-10-r38" \
JAVA_HOME="/opt/bitnami/java" \
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH"

View File

@@ -1,23 +1,23 @@
{
"gosu": {
"arch": "amd64",
"digest": "6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664",
"digest": "d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1",
"distro": "debian-10",
"type": "NAMI",
"version": "1.14.0-6"
"version": "1.14.0-7"
},
"java": {
"arch": "amd64",
"digest": "8e9d15dc54b3cf57e7f3b92efbb1e01ed07f002889034ec7703b62efb8265243",
"digest": "900545c4f346a0ece8abf2caf64fd9d4ab7514967d4614d716bf7362b24f828b",
"distro": "debian-10",
"type": "NAMI",
"version": "11.0.14-6"
"version": "11.0.14-7"
},
"wavefront-proxy": {
"arch": "amd64",
"digest": "094ecacd602a2cc2025af36bcc133567b984aaad2ca1a7d085b68d731c2c136f",
"digest": "e21b3789875c53e13cdc5da0ec796b15ffdf90a9b1155f8e2d3bb17bc575280c",
"distro": "debian-10",
"type": "NAMI",
"version": "10.14.0-4"
"version": "10.14.0-5"
}
}

View File

@@ -74,9 +74,8 @@ is_dir_empty() {
# boolean
#########################
is_mounted_dir_empty() {
local -r path="${1:?missing directory}"
# Calculate real path in order to avoid issues with symlinks
local -r dir="$(realpath "$path")"
local dir="${1:?missing directory}"
if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then
true
else