1.20.2-debian-11-r9 release

This commit is contained in:
Bitnami Bot
2022-06-25 09:37:17 +00:00
committed by Bitnami Containers
parent 72c20b00d2
commit bd48166736
2 changed files with 5 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ ENV HOME="/" \
OS_NAME="linux"
COPY prebuildfs /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages acl ca-certificates curl gzip libc6 libcrypt1 libgeoip1 libpcre3 libssl1.1 procps tar zlib1g
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.3-150" --checksum 8b992a5ee513c5eaca52b19232b21a93588ddf4c4850be4d47c6f19b11d1d90a

View File

@@ -47,7 +47,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`1.22`, `1.22-debian-11`, `1.22.0`, `1.22.0-debian-11-r8`, `latest` (1.22/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.22.0-debian-11-r8/1.22/debian-11/Dockerfile)
* [`1.21`, `1.21-debian-11`, `1.21.6`, `1.21.6-debian-11-r8` (1.21/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.21.6-debian-11-r8/1.21/debian-11/Dockerfile)
* [`1.20`, `1.20-debian-11`, `1.20.2`, `1.20.2-debian-11-r8` (1.20/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.20.2-debian-11-r8/1.20/debian-11/Dockerfile)
* [`1.20`, `1.20-debian-11`, `1.20.2`, `1.20.2-debian-11-r9` (1.20/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.20.2-debian-11-r9/1.20/debian-11/Dockerfile)
## Get this image
@@ -496,9 +496,9 @@ To add a custom NGINX module, it is necessary to compile NGINX with that module
Below is an example Dockerfile to build and install the NGINX Perl module (`ngx_http_perl_module`) over to the Bitnami image:
```Dockerfile
ARG NGINX_VERSION=1.19.6
ARG BITNAMI_NGINX_REVISION=r1
ARG BITNAMI_NGINX_TAG=${NGINX_VERSION}-debian-10-${BITNAMI_NGINX_REVISION}
ARG NGINX_VERSION=1.22.0
ARG BITNAMI_NGINX_REVISION=r0
ARG BITNAMI_NGINX_TAG=${NGINX_VERSION}-debian-11-${BITNAMI_NGINX_REVISION}
FROM bitnami/nginx:${BITNAMI_NGINX_TAG} AS builder
USER root