mirror of
https://github.com/bitnami/containers.git
synced 2026-03-06 06:58:01 +08:00
2.8.2-debian-10-r45 release
This commit is contained in:
@@ -11,10 +11,10 @@ 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 libgcc1 procps tar
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "1.8.322-7" --checksum 3ce0c1dc975421abe79ffa5d459b4562802312f299a86576d1a169fe2d38f5d9
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "yq" "4.21.1-0" --checksum 4a2289448b8cfe68482c1316d901a1f68692194085b6f0b05c64538bdf3858f8
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "spring-cloud-skipper" "2.8.2-7" --checksum 808c256c6c718a9f2877fdaaf8199bb78cc7e8e76537ebce5304acd949362777
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-6" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "1.8.322-8" --checksum d5670d09ac0e679ae28306e417e77e91b44051908ca3a82259efcd70764b996f
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "yq" "4.21.1-1" --checksum d0927015892d9e13182fbf5242b41d75de0bf5eca43106bb1c0f0f936b05144a
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "spring-cloud-skipper" "2.8.2-8" --checksum 024f62a8b4d5a2b89569ea6eaa7ee94691f094f213e2c33412c42253af928fcb
|
||||
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
|
||||
@@ -23,7 +23,7 @@ COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/spring-cloud-skipper/postunpack.sh
|
||||
RUN /opt/bitnami/scripts/java/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="spring-cloud-skipper" \
|
||||
BITNAMI_IMAGE_VERSION="2.8.2-debian-10-r44" \
|
||||
BITNAMI_IMAGE_VERSION="2.8.2-debian-10-r45" \
|
||||
JAVA_HOME="/opt/bitnami/java" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH"
|
||||
|
||||
|
||||
@@ -1,30 +1,30 @@
|
||||
{
|
||||
"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": "3ce0c1dc975421abe79ffa5d459b4562802312f299a86576d1a169fe2d38f5d9",
|
||||
"digest": "d5670d09ac0e679ae28306e417e77e91b44051908ca3a82259efcd70764b996f",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "1.8.322-7"
|
||||
"version": "1.8.322-8"
|
||||
},
|
||||
"spring-cloud-skipper": {
|
||||
"arch": "amd64",
|
||||
"digest": "808c256c6c718a9f2877fdaaf8199bb78cc7e8e76537ebce5304acd949362777",
|
||||
"digest": "024f62a8b4d5a2b89569ea6eaa7ee94691f094f213e2c33412c42253af928fcb",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "2.8.2-7"
|
||||
"version": "2.8.2-8"
|
||||
},
|
||||
"yq": {
|
||||
"arch": "amd64",
|
||||
"digest": "4a2289448b8cfe68482c1316d901a1f68692194085b6f0b05c64538bdf3858f8",
|
||||
"digest": "d0927015892d9e13182fbf5242b41d75de0bf5eca43106bb1c0f0f936b05144a",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "4.21.1-0"
|
||||
"version": "4.21.1-1"
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
|
||||
@@ -42,7 +42,7 @@ 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/).
|
||||
|
||||
|
||||
* [`2`, `2-debian-10`, `2.8.2`, `2.8.2-debian-10-r44`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spring-cloud-skipper/blob/2.8.2-debian-10-r44/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.8.2`, `2.8.2-debian-10-r45`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spring-cloud-skipper/blob/2.8.2-debian-10-r45/2/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/spring-cloud-skipper GitHub repo](https://github.com/bitnami/bitnami-docker-spring-cloud-skipper).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user