File tree Expand file tree Collapse file tree 14 files changed +82
-78
lines changed Expand file tree Collapse file tree 14 files changed +82
-78
lines changed Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.27.0 -alpine
6
+ FROM nginx:1.27.1 -alpine
7
7
8
8
ENV OTEL_VERSION 0.1.0
9
9
10
10
RUN set -x \
11
11
&& apkArch="$(cat /etc/apk/arch)" \
12
12
&& nginxPackages=" \
13
13
nginx=${NGINX_VERSION}-r${PKG_RELEASE} \
14
- nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE } \
15
- nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE } \
16
- nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE } \
14
+ nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
15
+ nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
16
+ nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
17
17
nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE} \
18
18
nginx-module-otel=${NGINX_VERSION}.${OTEL_VERSION}-r${PKG_RELEASE} \
19
19
" \
@@ -50,7 +50,7 @@ RUN set -x \
50
50
export HOME=${tempDir} \
51
51
&& cd ${tempDir} \
52
52
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
53
- && PKGOSSCHECKSUM=\" cd3333f4dfa4a873f6df73dfe24e047adc092d779aefb46577b6307ff0d0125543508694a80158b2bfc891167ad763b0d08287829df9924d4c22f50d063e76c0 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
53
+ && PKGOSSCHECKSUM=\" b9fbdf1779186fc02aa59dd87597fe4e906892391614289a4e6eedba398a3e770347b5b07110cca8c11fa3ba85bb711626ae69832e74c69ca8340d040a465907 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
54
54
&& if [ \"\$ (openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$ PKGOSSCHECKSUM\" ]; then \
55
55
echo \" pkg-oss tarball checksum verification succeeded!\" ; \
56
56
else \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.27.0 -alpine
6
+ FROM nginx:1.27.1 -alpine
7
7
8
8
RUN set -x \
9
9
&& apkArch="$(cat /etc/apk/arch)" \
10
10
&& nginxPackages=" \
11
11
nginx=${NGINX_VERSION}-r${PKG_RELEASE} \
12
- nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE } \
13
- nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE } \
14
- nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE } \
15
- nginx-module-perl=${NGINX_VERSION}-r${PKG_RELEASE } \
12
+ nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
13
+ nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
14
+ nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
15
+ nginx-module-perl=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
16
16
nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE} \
17
17
" \
18
18
# install prerequisites for public key and pkg-oss checks
@@ -45,7 +45,7 @@ RUN set -x \
45
45
export HOME=${tempDir} \
46
46
&& cd ${tempDir} \
47
47
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
48
- && PKGOSSCHECKSUM=\" cd3333f4dfa4a873f6df73dfe24e047adc092d779aefb46577b6307ff0d0125543508694a80158b2bfc891167ad763b0d08287829df9924d4c22f50d063e76c0 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
48
+ && PKGOSSCHECKSUM=\" b9fbdf1779186fc02aa59dd87597fe4e906892391614289a4e6eedba398a3e770347b5b07110cca8c11fa3ba85bb711626ae69832e74c69ca8340d040a465907 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
49
49
&& if [ \"\$ (openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$ PKGOSSCHECKSUM\" ]; then \
50
50
echo \" pkg-oss tarball checksum verification succeeded!\" ; \
51
51
else \
Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ FROM alpine:3.19
7
7
8
8
LABEL maintainer=
"NGINX Docker Maintainers <[email protected] >"
9
9
10
- ENV NGINX_VERSION 1.27.0
11
- ENV PKG_RELEASE 2
10
+ ENV NGINX_VERSION 1.27.1
11
+ ENV PKG_RELEASE 1
12
+ ENV DYNPKG_RELEASE 2
12
13
13
14
RUN set -x \
14
15
# create nginx user/group first, to be consistent throughout docker variants
@@ -57,7 +58,7 @@ RUN set -x \
57
58
export HOME=${tempDir} \
58
59
&& cd ${tempDir} \
59
60
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
60
- && PKGOSSCHECKSUM=\" cd3333f4dfa4a873f6df73dfe24e047adc092d779aefb46577b6307ff0d0125543508694a80158b2bfc891167ad763b0d08287829df9924d4c22f50d063e76c0 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
61
+ && PKGOSSCHECKSUM=\" b9fbdf1779186fc02aa59dd87597fe4e906892391614289a4e6eedba398a3e770347b5b07110cca8c11fa3ba85bb711626ae69832e74c69ca8340d040a465907 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
61
62
&& if [ \"\$ (openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$ PKGOSSCHECKSUM\" ]; then \
62
63
echo \" pkg-oss tarball checksum verification succeeded!\" ; \
63
64
else \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.27.0 -alpine-slim
6
+ FROM nginx:1.27.1 -alpine-slim
7
7
8
- ENV NJS_VERSION 0.8.4
9
- ENV NJS_RELEASE 2
8
+ ENV NJS_VERSION 0.8.5
9
+ ENV NJS_RELEASE 1
10
10
11
11
RUN set -x \
12
12
&& apkArch="$(cat /etc/apk/arch)" \
13
13
&& nginxPackages=" \
14
14
nginx=${NGINX_VERSION}-r${PKG_RELEASE} \
15
- nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE } \
16
- nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE } \
17
- nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE } \
15
+ nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
16
+ nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
17
+ nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
18
18
nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE} \
19
19
" \
20
20
# install prerequisites for public key and pkg-oss checks
@@ -50,7 +50,7 @@ RUN set -x \
50
50
export HOME=${tempDir} \
51
51
&& cd ${tempDir} \
52
52
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
53
- && PKGOSSCHECKSUM=\" cd3333f4dfa4a873f6df73dfe24e047adc092d779aefb46577b6307ff0d0125543508694a80158b2bfc891167ad763b0d08287829df9924d4c22f50d063e76c0 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
53
+ && PKGOSSCHECKSUM=\" b9fbdf1779186fc02aa59dd87597fe4e906892391614289a4e6eedba398a3e770347b5b07110cca8c11fa3ba85bb711626ae69832e74c69ca8340d040a465907 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
54
54
&& if [ \"\$ (openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$ PKGOSSCHECKSUM\" ]; then \
55
55
echo \" pkg-oss tarball checksum verification succeeded!\" ; \
56
56
else \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.27.0
6
+ FROM nginx:1.27.1
7
7
8
8
ENV OTEL_VERSION 0.1.0
9
9
@@ -12,9 +12,9 @@ RUN set -x; \
12
12
dpkgArch="$(dpkg --print-architecture)" \
13
13
&& nginxPackages=" \
14
14
nginx=${NGINX_VERSION}-${PKG_RELEASE} \
15
- nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE } \
16
- nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE } \
17
- nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE } \
15
+ nginx-module-xslt=${NGINX_VERSION}-${DYNPKG_RELEASE } \
16
+ nginx-module-geoip=${NGINX_VERSION}-${DYNPKG_RELEASE } \
17
+ nginx-module-image-filter=${NGINX_VERSION}-${DYNPKG_RELEASE } \
18
18
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE} \
19
19
nginx-module-otel=${NGINX_VERSION}+${OTEL_VERSION}-${PKG_RELEASE} \
20
20
" \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.27.0
6
+ FROM nginx:1.27.1
7
7
8
8
RUN set -x; \
9
9
NGINX_GPGKEY_PATH=/etc/apt/keyrings/nginx-archive-keyring.gpg; \
10
10
dpkgArch="$(dpkg --print-architecture)" \
11
11
&& nginxPackages=" \
12
12
nginx=${NGINX_VERSION}-${PKG_RELEASE} \
13
- nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE } \
14
- nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE } \
15
- nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE } \
16
- nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE } \
13
+ nginx-module-xslt=${NGINX_VERSION}-${DYNPKG_RELEASE } \
14
+ nginx-module-geoip=${NGINX_VERSION}-${DYNPKG_RELEASE } \
15
+ nginx-module-image-filter=${NGINX_VERSION}-${DYNPKG_RELEASE } \
16
+ nginx-module-perl=${NGINX_VERSION}-${DYNPKG_RELEASE } \
17
17
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE} \
18
18
" \
19
19
&& case "$dpkgArch" in \
@@ -37,11 +37,11 @@ RUN set -x; \
37
37
\
38
38
# build .deb files from upstream's source packages (which are verified by apt-get)
39
39
&& apt-get update \
40
- && apt-get build-dep -y nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE } \
40
+ && apt-get build-dep -y nginx-module-perl=${NGINX_VERSION}-${DYNPKG_RELEASE } \
41
41
&& ( \
42
42
cd "$tempDir" \
43
43
&& DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" \
44
- apt-get source --compile nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE } \
44
+ apt-get source --compile nginx-module-perl=${NGINX_VERSION}-${DYNPKG_RELEASE } \
45
45
) \
46
46
# we don't remove APT lists here because they get re-downloaded and removed later
47
47
\
Original file line number Diff line number Diff line change @@ -7,10 +7,11 @@ FROM debian:bookworm-slim
7
7
8
8
LABEL maintainer=
"NGINX Docker Maintainers <[email protected] >"
9
9
10
- ENV NGINX_VERSION 1.27.0
11
- ENV NJS_VERSION 0.8.4
12
- ENV NJS_RELEASE 2~bookworm
13
- ENV PKG_RELEASE 2~bookworm
10
+ ENV NGINX_VERSION 1.27.1
11
+ ENV NJS_VERSION 0.8.5
12
+ ENV NJS_RELEASE 1~bookworm
13
+ ENV PKG_RELEASE 1~bookworm
14
+ ENV DYNPKG_RELEASE 2~bookworm
14
15
15
16
RUN set -x \
16
17
# create nginx user/group first, to be consistent throughout docker variants
@@ -39,9 +40,9 @@ RUN set -x \
39
40
&& dpkgArch="$(dpkg --print-architecture)" \
40
41
&& nginxPackages=" \
41
42
nginx=${NGINX_VERSION}-${PKG_RELEASE} \
42
- nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE } \
43
- nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE } \
44
- nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE } \
43
+ nginx-module-xslt=${NGINX_VERSION}-${DYNPKG_RELEASE } \
44
+ nginx-module-geoip=${NGINX_VERSION}-${DYNPKG_RELEASE } \
45
+ nginx-module-image-filter=${NGINX_VERSION}-${DYNPKG_RELEASE } \
45
46
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE} \
46
47
" \
47
48
&& case "$dpkgArch" in \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.26.1 -alpine
6
+ FROM nginx:1.26.2 -alpine
7
7
8
8
ENV OTEL_VERSION 0.1.0
9
9
10
10
RUN set -x \
11
11
&& apkArch="$(cat /etc/apk/arch)" \
12
12
&& nginxPackages=" \
13
13
nginx=${NGINX_VERSION}-r${PKG_RELEASE} \
14
- nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE } \
15
- nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE } \
16
- nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE } \
14
+ nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
15
+ nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
16
+ nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
17
17
nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE} \
18
18
nginx-module-otel=${NGINX_VERSION}.${OTEL_VERSION}-r${PKG_RELEASE} \
19
19
" \
@@ -50,7 +50,7 @@ RUN set -x \
50
50
export HOME=${tempDir} \
51
51
&& cd ${tempDir} \
52
52
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
53
- && PKGOSSCHECKSUM=\" 0db2bf5f86e7c31f23d0e3e7699a5d8a4d9d9b0dc2f98d3e3a31e004df20206270debf6502e4481892e8b64d55fba73fcc8d74c3e0ddfcd2d3f85a17fa02a25e *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
53
+ && PKGOSSCHECKSUM=\" 825f610c44dfb97166112e6d060c0ba209a74f50e42c7c23a5b8742f468596f110bb1b4ca9299547a8a3d41f3a7caa864622f40f6c7bb4d8bab3d24880bdfb6a *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
54
54
&& if [ \"\$ (openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$ PKGOSSCHECKSUM\" ]; then \
55
55
echo \" pkg-oss tarball checksum verification succeeded!\" ; \
56
56
else \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.26.1 -alpine
6
+ FROM nginx:1.26.2 -alpine
7
7
8
8
RUN set -x \
9
9
&& apkArch="$(cat /etc/apk/arch)" \
10
10
&& nginxPackages=" \
11
11
nginx=${NGINX_VERSION}-r${PKG_RELEASE} \
12
- nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE } \
13
- nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE } \
14
- nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE } \
15
- nginx-module-perl=${NGINX_VERSION}-r${PKG_RELEASE } \
12
+ nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
13
+ nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
14
+ nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
15
+ nginx-module-perl=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
16
16
nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE} \
17
17
" \
18
18
# install prerequisites for public key and pkg-oss checks
@@ -45,7 +45,7 @@ RUN set -x \
45
45
export HOME=${tempDir} \
46
46
&& cd ${tempDir} \
47
47
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
48
- && PKGOSSCHECKSUM=\" 0db2bf5f86e7c31f23d0e3e7699a5d8a4d9d9b0dc2f98d3e3a31e004df20206270debf6502e4481892e8b64d55fba73fcc8d74c3e0ddfcd2d3f85a17fa02a25e *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
48
+ && PKGOSSCHECKSUM=\" 825f610c44dfb97166112e6d060c0ba209a74f50e42c7c23a5b8742f468596f110bb1b4ca9299547a8a3d41f3a7caa864622f40f6c7bb4d8bab3d24880bdfb6a *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
49
49
&& if [ \"\$ (openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$ PKGOSSCHECKSUM\" ]; then \
50
50
echo \" pkg-oss tarball checksum verification succeeded!\" ; \
51
51
else \
Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ FROM alpine:3.19
7
7
8
8
LABEL maintainer=
"NGINX Docker Maintainers <[email protected] >"
9
9
10
- ENV NGINX_VERSION 1.26.1
11
- ENV PKG_RELEASE 2
10
+ ENV NGINX_VERSION 1.26.2
11
+ ENV PKG_RELEASE 1
12
+ ENV DYNPKG_RELEASE 2
12
13
13
14
RUN set -x \
14
15
# create nginx user/group first, to be consistent throughout docker variants
@@ -57,7 +58,7 @@ RUN set -x \
57
58
export HOME=${tempDir} \
58
59
&& cd ${tempDir} \
59
60
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
60
- && PKGOSSCHECKSUM=\" 0db2bf5f86e7c31f23d0e3e7699a5d8a4d9d9b0dc2f98d3e3a31e004df20206270debf6502e4481892e8b64d55fba73fcc8d74c3e0ddfcd2d3f85a17fa02a25e *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
61
+ && PKGOSSCHECKSUM=\" 825f610c44dfb97166112e6d060c0ba209a74f50e42c7c23a5b8742f468596f110bb1b4ca9299547a8a3d41f3a7caa864622f40f6c7bb4d8bab3d24880bdfb6a *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
61
62
&& if [ \"\$ (openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$ PKGOSSCHECKSUM\" ]; then \
62
63
echo \" pkg-oss tarball checksum verification succeeded!\" ; \
63
64
else \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.26.1 -alpine-slim
6
+ FROM nginx:1.26.2 -alpine-slim
7
7
8
- ENV NJS_VERSION 0.8.4
9
- ENV NJS_RELEASE 2
8
+ ENV NJS_VERSION 0.8.5
9
+ ENV NJS_RELEASE 1
10
10
11
11
RUN set -x \
12
12
&& apkArch="$(cat /etc/apk/arch)" \
13
13
&& nginxPackages=" \
14
14
nginx=${NGINX_VERSION}-r${PKG_RELEASE} \
15
- nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE } \
16
- nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE } \
17
- nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE } \
15
+ nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
16
+ nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
17
+ nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE } \
18
18
nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE} \
19
19
" \
20
20
# install prerequisites for public key and pkg-oss checks
@@ -50,7 +50,7 @@ RUN set -x \
50
50
export HOME=${tempDir} \
51
51
&& cd ${tempDir} \
52
52
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \
53
- && PKGOSSCHECKSUM=\" 0db2bf5f86e7c31f23d0e3e7699a5d8a4d9d9b0dc2f98d3e3a31e004df20206270debf6502e4481892e8b64d55fba73fcc8d74c3e0ddfcd2d3f85a17fa02a25e *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
53
+ && PKGOSSCHECKSUM=\" 825f610c44dfb97166112e6d060c0ba209a74f50e42c7c23a5b8742f468596f110bb1b4ca9299547a8a3d41f3a7caa864622f40f6c7bb4d8bab3d24880bdfb6a *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \
54
54
&& if [ \"\$ (openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$ PKGOSSCHECKSUM\" ]; then \
55
55
echo \" pkg-oss tarball checksum verification succeeded!\" ; \
56
56
else \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.26.1
6
+ FROM nginx:1.26.2
7
7
8
8
ENV OTEL_VERSION 0.1.0
9
9
@@ -12,9 +12,9 @@ RUN set -x; \
12
12
dpkgArch="$(dpkg --print-architecture)" \
13
13
&& nginxPackages=" \
14
14
nginx=${NGINX_VERSION}-${PKG_RELEASE} \
15
- nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE } \
16
- nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE } \
17
- nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE } \
15
+ nginx-module-xslt=${NGINX_VERSION}-${DYNPKG_RELEASE } \
16
+ nginx-module-geoip=${NGINX_VERSION}-${DYNPKG_RELEASE } \
17
+ nginx-module-image-filter=${NGINX_VERSION}-${DYNPKG_RELEASE } \
18
18
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE} \
19
19
nginx-module-otel=${NGINX_VERSION}+${OTEL_VERSION}-${PKG_RELEASE} \
20
20
" \
Original file line number Diff line number Diff line change 3
3
#
4
4
# PLEASE DO NOT EDIT IT DIRECTLY.
5
5
#
6
- FROM nginx:1.26.1
6
+ FROM nginx:1.26.2
7
7
8
8
RUN set -x; \
9
9
NGINX_GPGKEY_PATH=/etc/apt/keyrings/nginx-archive-keyring.gpg; \
10
10
dpkgArch="$(dpkg --print-architecture)" \
11
11
&& nginxPackages=" \
12
12
nginx=${NGINX_VERSION}-${PKG_RELEASE} \
13
- nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE } \
14
- nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE } \
15
- nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE } \
16
- nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE } \
13
+ nginx-module-xslt=${NGINX_VERSION}-${DYNPKG_RELEASE } \
14
+ nginx-module-geoip=${NGINX_VERSION}-${DYNPKG_RELEASE } \
15
+ nginx-module-image-filter=${NGINX_VERSION}-${DYNPKG_RELEASE } \
16
+ nginx-module-perl=${NGINX_VERSION}-${DYNPKG_RELEASE } \
17
17
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE} \
18
18
" \
19
19
&& case "$dpkgArch" in \
@@ -37,11 +37,11 @@ RUN set -x; \
37
37
\
38
38
# build .deb files from upstream's source packages (which are verified by apt-get)
39
39
&& apt-get update \
40
- && apt-get build-dep -y nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE } \
40
+ && apt-get build-dep -y nginx-module-perl=${NGINX_VERSION}-${DYNPKG_RELEASE } \
41
41
&& ( \
42
42
cd "$tempDir" \
43
43
&& DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" \
44
- apt-get source --compile nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE } \
44
+ apt-get source --compile nginx-module-perl=${NGINX_VERSION}-${DYNPKG_RELEASE } \
45
45
) \
46
46
# we don't remove APT lists here because they get re-downloaded and removed later
47
47
\
You can’t perform that action at this time.
0 commit comments