mirror of
https://github.com/bitnami/containers.git
synced 2026-03-07 01:07:20 +08:00
2.4.3-debian-10-r11 release
This commit is contained in:
@@ -8,10 +8,10 @@ ENV OS_ARCH="amd64" \
|
||||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip libc6 libgeoip1 libpcre3 libssl1.1 procps tar zlib1g
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "nginx" "1.21.6-3" --checksum 98f17555522a3756114507c278671d0e2cf13291c1616a2b446b62e66703902f
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.1-9" --checksum 4694f01476c5a457a71f280562df45ea542bdf3f9b298ff87643a89ea365f5fb
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kubeapps" "2.4.3-2" --checksum 47c00bae78766ea127b0e3d2c757713063047dd287c441b4e992f379542d114c
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-6" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "nginx" "1.21.6-4" --checksum 305f5b0413081f7911932bc7144c478858444e16e7ef917123f50455a490c427
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.1-10" --checksum 97c2ae4b001c5937e888b920bee7b1a40a076680caac53ded6d10f6207d54565
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kubeapps" "2.4.3-3" --checksum 3c3f4a8594b77587a2d17200d1339c7ea7daa668b01cf45634395e1e84da4bc0
|
||||
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 ln -sf /dev/stdout /opt/bitnami/nginx/logs/access.log
|
||||
@@ -24,7 +24,7 @@ RUN rm -rf /app && \
|
||||
RUN chmod -R g+rwX /opt/bitnami/nginx/conf
|
||||
RUN /opt/bitnami/scripts/nginx/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="kubeapps-dashboard" \
|
||||
BITNAMI_IMAGE_VERSION="2.4.3-debian-10-r10" \
|
||||
BITNAMI_IMAGE_VERSION="2.4.3-debian-10-r11" \
|
||||
NGINX_HTTPS_PORT_NUMBER="" \
|
||||
NGINX_HTTP_PORT_NUMBER="" \
|
||||
PATH="/opt/bitnami/nginx/sbin:/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"
|
||||
},
|
||||
"kubeapps": {
|
||||
"arch": "amd64",
|
||||
"digest": "47c00bae78766ea127b0e3d2c757713063047dd287c441b4e992f379542d114c",
|
||||
"digest": "3c3f4a8594b77587a2d17200d1339c7ea7daa668b01cf45634395e1e84da4bc0",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "2.4.3-2"
|
||||
"version": "2.4.3-3"
|
||||
},
|
||||
"nginx": {
|
||||
"arch": "amd64",
|
||||
"digest": "98f17555522a3756114507c278671d0e2cf13291c1616a2b446b62e66703902f",
|
||||
"digest": "305f5b0413081f7911932bc7144c478858444e16e7ef917123f50455a490c427",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "1.21.6-3"
|
||||
"version": "1.21.6-4"
|
||||
},
|
||||
"render-template": {
|
||||
"arch": "amd64",
|
||||
"digest": "4694f01476c5a457a71f280562df45ea542bdf3f9b298ff87643a89ea365f5fb",
|
||||
"digest": "97c2ae4b001c5937e888b920bee7b1a40a076680caac53ded6d10f6207d54565",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "1.0.1-9"
|
||||
"version": "1.0.1-10"
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
|
||||
@@ -39,7 +39,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.4.3`, `2.4.3-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kubeapps-dashboard/blob/2.4.3-debian-10-r10/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.4.3`, `2.4.3-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kubeapps-dashboard/blob/2.4.3-debian-10-r11/2/debian-10/Dockerfile)
|
||||
|
||||
## Configuration
|
||||
|
||||
|
||||
Reference in New Issue
Block a user