-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update ENV instructions to use "="
Update the various Dockerfile ENV instructions to use the new format (using `=` as the key value separator instead of a whitespace) per the latest docs https://docs.docker.com/reference/dockerfile/#env
- Loading branch information
Showing
15 changed files
with
30 additions
and
30 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 |
---|---|---|
|
@@ -2,8 +2,8 @@ FROM alpine:%%ALPINE_VERSION%% | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION %%NGINX_VERSION%% | ||
ENV PKG_RELEASE %%PKG_RELEASE%% | ||
ENV NGINX_VERSION=%%NGINX_VERSION%% | ||
ENV PKG_RELEASE=%%PKG_RELEASE%% | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
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 |
---|---|---|
|
@@ -2,10 +2,10 @@ FROM debian:%%DEBIAN_VERSION%%-slim | |
|
||
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%% | ||
ENV NGINX_VERSION=%%NGINX_VERSION%% | ||
ENV NJS_VERSION=%%NJS_VERSION%% | ||
ENV NJS_RELEASE=%%NJS_RELEASE%% | ||
ENV PKG_RELEASE=%%PKG_RELEASE%% | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
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 |
---|---|---|
|
@@ -7,8 +7,8 @@ FROM alpine:3.19 | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION 1.27.0 | ||
ENV PKG_RELEASE 2 | ||
ENV NGINX_VERSION=1.27.0 | ||
ENV PKG_RELEASE=2 | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
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 |
---|---|---|
|
@@ -7,10 +7,10 @@ FROM debian:bookworm-slim | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION 1.27.0 | ||
ENV NJS_VERSION 0.8.4 | ||
ENV NJS_RELEASE 2~bookworm | ||
ENV PKG_RELEASE 2~bookworm | ||
ENV NGINX_VERSION=1.27.0 | ||
ENV NJS_VERSION=0.8.4 | ||
ENV NJS_RELEASE=2~bookworm | ||
ENV PKG_RELEASE=2~bookworm | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
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 |
---|---|---|
|
@@ -7,8 +7,8 @@ FROM alpine:3.19 | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION 1.26.1 | ||
ENV PKG_RELEASE 2 | ||
ENV NGINX_VERSION=1.26.1 | ||
ENV PKG_RELEASE=2 | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
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 |
---|---|---|
|
@@ -7,10 +7,10 @@ FROM debian:bookworm-slim | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION 1.26.1 | ||
ENV NJS_VERSION 0.8.4 | ||
ENV NJS_RELEASE 2~bookworm | ||
ENV PKG_RELEASE 2~bookworm | ||
ENV NGINX_VERSION=1.26.1 | ||
ENV NJS_VERSION=0.8.4 | ||
ENV NJS_RELEASE=2~bookworm | ||
ENV PKG_RELEASE=2~bookworm | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|