1.18.0-debian-10-r210 release

This commit is contained in:
Bitnami Bot 2020-12-16 17:18:16 +00:00
parent db9f9355a3
commit 4dc1a1c7b4
4 changed files with 9 additions and 7 deletions

View File

@ -10,7 +10,7 @@ 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 "render-template" "1.0.0-3" --checksum 8179ad1371c9a7d897fe3b1bf53bbe763f94edafef19acad2498dd48b3674efe
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "nginx" "1.18.0-5" --checksum 853ef167b701384933b7781f74c7cbb2490352dc8c3fc085eccb064763a8fd01
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "nginx" "1.18.0-6" --checksum a5b933834cf3a32b7fb7b15e633714991be2050c1f7cb1db377105bd8d1780e3
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
RUN apt-get update && apt-get upgrade -y && \
rm -r /var/lib/apt/lists /var/cache/apt/archives
@ -21,7 +21,7 @@ RUN ln -sf /dev/stderr /opt/bitnami/nginx/logs/error.log
COPY rootfs /
RUN /opt/bitnami/scripts/nginx/postunpack.sh
ENV BITNAMI_APP_NAME="nginx" \
BITNAMI_IMAGE_VERSION="1.18.0-debian-10-r209" \
BITNAMI_IMAGE_VERSION="1.18.0-debian-10-r210" \
NGINX_ENABLE_CUSTOM_PORTS="no" \
NGINX_HTTPS_PORT_NUMBER="" \
NGINX_HTTP_PORT_NUMBER="" \

View File

@ -8,10 +8,10 @@
},
"nginx": {
"arch": "amd64",
"digest": "853ef167b701384933b7781f74c7cbb2490352dc8c3fc085eccb064763a8fd01",
"digest": "a5b933834cf3a32b7fb7b15e633714991be2050c1f7cb1db377105bd8d1780e3",
"distro": "debian-10",
"type": "NAMI",
"version": "1.18.0-5"
"version": "1.18.0-6"
},
"render-template": {
"arch": "amd64",

View File

@ -10,15 +10,17 @@
# Functions
########################
# Resolve dns
# Resolve IP address for a host/domain (i.e. DNS lookup)
# Arguments:
# $1 - Hostname to resolve
# $2 - IP address version (v4, v6), leave empty for resolving to any version
# Returns:
# IP
#########################
dns_lookup() {
local host="${1:?host is missing}"
getent ahosts "$host" | awk '/STREAM/ {print $1 }'
local ip_version="${2:-}"
getent "ahosts${ip_version}" "$host" | awk '/STREAM/ {print $1 }' | head -n 1
}
#########################

View File

@ -45,7 +45,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`1.19`, `1.19-debian-10`, `1.19.6`, `1.19.6-debian-10-r1`, `latest` (1.19/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.19.6-debian-10-r1/1.19/debian-10/Dockerfile)
* [`1.18`, `1.18-debian-10`, `1.18.0`, `1.18.0-debian-10-r209` (1.18/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.18.0-debian-10-r209/1.18/debian-10/Dockerfile)
* [`1.18`, `1.18-debian-10`, `1.18.0`, `1.18.0-debian-10-r210` (1.18/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.18.0-debian-10-r210/1.18/debian-10/Dockerfile)
# Get this image