8.9.12-debian-10-r0 release

This commit is contained in:
Bitnami Bot 2021-01-08 09:34:22 +00:00
parent 42cfd071ce
commit 203b7ff30b
4 changed files with 25 additions and 9 deletions

View File

@ -9,25 +9,25 @@ ENV HOME="/" \
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages acl ca-certificates curl dirmngr gnupg gzip libargon2-1 libaudit1 libbsd0 libbz2-1.0 libc6 libcap-ng0 libcom-err2 libcurl4 libexpat1 libffi6 libfftw3-double3 libfontconfig1 libfreetype6 libgcc1 libgcrypt20 libgeoip1 libglib2.0-0 libgmp10 libgnutls30 libgomp1 libgpg-error0 libgssapi-krb5-2 libhogweed4 libicu63 libidn2-0 libjemalloc2 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 libldap-2.4-2 liblqr-1-0 libltdl7 liblzma5 libmagickcore-6.q16-6 libmagickwand-6.q16-6 libmcrypt4 libmemcached11 libmemcachedutil2 libncurses6 libnettle6 libnghttp2-14 libp11-kit0 libpam0g libpcre3 libpng16-16 libpq5 libpsl5 libreadline7 librtmp1 libsasl2-2 libssh2-1 libssl1.1 libstdc++6 libsybdb5 libtasn1-6 libtidy5deb1 libtinfo6 libunistring2 libuuid1 libx11-6 libxau6 libxcb1 libxdmcp6 libxext6 libxml2 libxslt1.1 libzip4 procps tar unzip zlib1g
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "php" "7.3.25-6" --checksum 105f6fc0ed77d678cc2f975160938d5577b902983729e90b2c94b32e68023eb7
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "php" "7.3.26-1" --checksum 0285f8e8bcc664b2d75c93a89a5d13116978823bb40b2338727b3186e44b2342
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "nginx" "1.18.0-7" --checksum 0c798efa4673cd0fc90742889f96a052d43683f92c524a258dd62427eff7d475
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "mysql-client" "10.3.27-0" --checksum f96905e763a6334b75a7cdb07f8d89658cde02be41cb09d91d0682fc649fdcff
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.0-3" --checksum 8179ad1371c9a7d897fe3b1bf53bbe763f94edafef19acad2498dd48b3674efe
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "drupal" "8.9.11-0" --checksum 80ed32ea362ae4ec92eee98dcd4c31ca93edf5ab143af0bf435fee7fc291679e
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "drupal" "8.9.12-0" --checksum 264681e52dec5d5d7a9d89ce2b3ce0aed7a3b13f184c9656dd84aa7ddb3cf531
RUN apt-get update && apt-get upgrade -y && \
rm -r /var/lib/apt/lists /var/cache/apt/archives
RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/nginx/postunpack.sh
RUN /opt/bitnami/scripts/php/postunpack.sh
RUN /opt/bitnami/scripts/nginx/postunpack.sh
RUN /opt/bitnami/scripts/nginx-php-fpm/postunpack.sh
RUN /opt/bitnami/scripts/drupal/postunpack.sh
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
ENV ALLOW_EMPTY_PASSWORD="no" \
BITNAMI_APP_NAME="drupal-nginx" \
BITNAMI_IMAGE_VERSION="8.9.11-debian-10-r29" \
BITNAMI_IMAGE_VERSION="8.9.12-debian-10-r0" \
MARIADB_HOST="mariadb" \
MARIADB_PORT_NUMBER="3306" \
MARIADB_ROOT_PASSWORD="" \

View File

@ -1,10 +1,10 @@
{
"drupal": {
"arch": "amd64",
"digest": "80ed32ea362ae4ec92eee98dcd4c31ca93edf5ab143af0bf435fee7fc291679e",
"digest": "264681e52dec5d5d7a9d89ce2b3ce0aed7a3b13f184c9656dd84aa7ddb3cf531",
"distro": "debian-10",
"type": "NAMI",
"version": "8.9.11-0"
"version": "8.9.12-0"
},
"gosu": {
"arch": "amd64",
@ -29,10 +29,10 @@
},
"php": {
"arch": "amd64",
"digest": "105f6fc0ed77d678cc2f975160938d5577b902983729e90b2c94b32e68023eb7",
"digest": "0285f8e8bcc664b2d75c93a89a5d13116978823bb40b2338727b3186e44b2342",
"distro": "debian-10",
"type": "NAMI",
"version": "7.3.25-6"
"version": "7.3.26-1"
},
"render-template": {
"arch": "amd64",

View File

@ -0,0 +1,16 @@
#!/bin/bash
#
# Library to use for scripts expected to be used as Kubernetes lifecycle hooks
# shellcheck disable=SC1091
# Load generic libraries
. /opt/bitnami/scripts/liblog.sh
. /opt/bitnami/scripts/libos.sh
# Override functions that log to stdout/stderr of the current process, so they print to process 1
for function_to_override in stderr_print debug_execute; do
# Output is sent to output of process 1 and thus end up in the container log
# The hook output in general isn't saved
eval "$(declare -f "$function_to_override") >/proc/1/fd/1 2>/proc/1/fd/2"
done

View File

@ -43,7 +43,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`9`, `9-debian-10`, `9.1.2`, `9.1.2-debian-10-r0`, `latest` (9/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-drupal-nginx/blob/9.1.2-debian-10-r0/9/debian-10/Dockerfile)
* [`8`, `8-debian-10`, `8.9.12`, `8.9.12-debian-10-r-1` (8/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-drupal-nginx/blob/8.9.12-debian-10-r-1/8/debian-10/Dockerfile)
* [`8`, `8-debian-10`, `8.9.12`, `8.9.12-debian-10-r0` (8/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-drupal-nginx/blob/8.9.12-debian-10-r0/8/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/drupal-nginx GitHub repo](https://github.com/bitnami/bitnami-docker-drupal-nginx).