-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce NJS_RELEASE to hold the version for njs package release.
This is currently needed for mainline versions to pick up an update njs release (0.8.4-2).
- Loading branch information
Showing
16 changed files
with
54 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | |
|
||
ENV NGINX_VERSION %%NGINX_VERSION%% | ||
ENV NJS_VERSION %%NJS_VERSION%% | ||
ENV NJS_RELEASE %%NJS_RELEASE%% | ||
ENV PKG_RELEASE %%PKG_RELEASE%% | ||
|
||
RUN set -x \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | |
|
||
ENV NGINX_VERSION 1.25.5 | ||
ENV NJS_VERSION 0.8.4 | ||
ENV NJS_RELEASE 2~bookworm | ||
ENV PKG_RELEASE 1~bookworm | ||
|
||
RUN set -x \ | ||
|
@@ -39,7 +40,7 @@ RUN set -x \ | |
nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} \ | ||
nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} \ | ||
nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} \ | ||
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE} \ | ||
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE} \ | ||
" \ | ||
&& case "$dpkgArch" in \ | ||
amd64|arm64) \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | |
|
||
ENV NGINX_VERSION 1.26.0 | ||
ENV NJS_VERSION 0.8.4 | ||
ENV NJS_RELEASE 1~bookworm | ||
ENV PKG_RELEASE 1~bookworm | ||
|
||
RUN set -x \ | ||
|
@@ -39,7 +40,7 @@ RUN set -x \ | |
nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} \ | ||
nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} \ | ||
nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} \ | ||
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE} \ | ||
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE} \ | ||
" \ | ||
&& case "$dpkgArch" in \ | ||
amd64|arm64) \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters