Skip to content

Commit b0e153a

Browse files
committed
Updated stable nginx to 1.20.2 and njs to 0.7.0.
1 parent 09a6385 commit b0e153a

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

stable/alpine-perl/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.14
77

88
LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
99

10-
ENV NGINX_VERSION 1.20.1
11-
ENV NJS_VERSION 0.5.3
10+
ENV NGINX_VERSION 1.20.2
11+
ENV NJS_VERSION 0.7.0
1212
ENV PKG_RELEASE 1
1313

1414
RUN set -x \
@@ -68,7 +68,7 @@ RUN set -x \
6868
export HOME=${tempDir} \
6969
&& cd ${tempDir} \
7070
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
71-
&& PKGOSSCHECKSUM=\"024718988028320b587f03989b76facff6ba899d9bbb36eeb6564fc2569fc32021427fd35ad24a23d7cec63813227ff2f73c953bbb71786a2d3308e65efaf0b1 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
71+
&& PKGOSSCHECKSUM=\"af6e7eb25594dffe2903358f7a2c5c956f5b67b8df3f4e8237c30b63e50ce28e6eada3ed453687409beef8f3afa8f551cb20df2f06bd5e235eb66df212ece2ed *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
7272
&& if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then \
7373
echo \"pkg-oss tarball checksum verification succeeded!\"; \
7474
else \

stable/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.14
77

88
LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
99

10-
ENV NGINX_VERSION 1.20.1
11-
ENV NJS_VERSION 0.5.3
10+
ENV NGINX_VERSION 1.20.2
11+
ENV NJS_VERSION 0.7.0
1212
ENV PKG_RELEASE 1
1313

1414
RUN set -x \
@@ -67,7 +67,7 @@ RUN set -x \
6767
export HOME=${tempDir} \
6868
&& cd ${tempDir} \
6969
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
70-
&& PKGOSSCHECKSUM=\"024718988028320b587f03989b76facff6ba899d9bbb36eeb6564fc2569fc32021427fd35ad24a23d7cec63813227ff2f73c953bbb71786a2d3308e65efaf0b1 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
70+
&& PKGOSSCHECKSUM=\"af6e7eb25594dffe2903358f7a2c5c956f5b67b8df3f4e8237c30b63e50ce28e6eada3ed453687409beef8f3afa8f551cb20df2f06bd5e235eb66df212ece2ed *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
7171
&& if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then \
7272
echo \"pkg-oss tarball checksum verification succeeded!\"; \
7373
else \

stable/debian-perl/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM debian:bullseye-slim
77

88
LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
99

10-
ENV NGINX_VERSION 1.20.1
11-
ENV NJS_VERSION 0.5.3
10+
ENV NGINX_VERSION 1.20.2
11+
ENV NJS_VERSION 0.7.0
1212
ENV PKG_RELEASE 1~bullseye
1313

1414
RUN set -x \
@@ -39,7 +39,7 @@ RUN set -x \
3939
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE} \
4040
" \
4141
&& case "$dpkgArch" in \
42-
amd64|i386|arm64) \
42+
amd64|arm64) \
4343
# arches officialy built by upstream
4444
echo "deb https://nginx.org/packages/debian/ bullseye nginx" >> /etc/apt/sources.list.d/nginx.list \
4545
&& apt-get update \

stable/debian/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM debian:bullseye-slim
77

88
LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
99

10-
ENV NGINX_VERSION 1.20.1
11-
ENV NJS_VERSION 0.5.3
10+
ENV NGINX_VERSION 1.20.2
11+
ENV NJS_VERSION 0.7.0
1212
ENV PKG_RELEASE 1~bullseye
1313

1414
RUN set -x \
@@ -38,7 +38,7 @@ RUN set -x \
3838
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE} \
3939
" \
4040
&& case "$dpkgArch" in \
41-
amd64|i386|arm64) \
41+
amd64|arm64) \
4242
# arches officialy built by upstream
4343
echo "deb https://nginx.org/packages/debian/ bullseye nginx" >> /etc/apt/sources.list.d/nginx.list \
4444
&& apt-get update \

update.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ declare branches=(
1313
# Remember to update pkgosschecksum when changing this.
1414
declare -A nginx=(
1515
[mainline]='1.21.4'
16-
[stable]='1.20.1'
16+
[stable]='1.20.2'
1717
)
1818

1919
# Current njs versions
2020
declare -A njs=(
2121
[mainline]='0.7.0'
22-
[stable]='0.5.3'
22+
[stable]='0.7.0'
2323
)
2424

2525
# Current package patchlevel version
@@ -54,7 +54,7 @@ declare -A rev=(
5454
# Used in alpine builds for architectures not packaged by nginx.org
5555
declare -A pkgosschecksum=(
5656
[mainline]='f917c27702aa89cda46878fc80d446839c592c43ce7f251b3f4ced60c7033d34496a92d283927225d458cbc4f2f89499e7fb16344923317cd7725ad722eaf93e'
57-
[stable]='024718988028320b587f03989b76facff6ba899d9bbb36eeb6564fc2569fc32021427fd35ad24a23d7cec63813227ff2f73c953bbb71786a2d3308e65efaf0b1'
57+
[stable]='af6e7eb25594dffe2903358f7a2c5c956f5b67b8df3f4e8237c30b63e50ce28e6eada3ed453687409beef8f3afa8f551cb20df2f06bd5e235eb66df212ece2ed'
5858
)
5959

6060
get_packages() {

0 commit comments

Comments
 (0)