From f59ca461c39e59fd527b0ad8358820eb6267f8d3 Mon Sep 17 00:00:00 2001 From: Jeremy Hodges Date: Wed, 3 Nov 2021 12:25:27 +0000 Subject: [PATCH 1/3] Add Node 16 LTS runtime --- ubuntu/standard/5.0/Dockerfile | 4 +++- ubuntu/standard/5.0/runtimes.yml | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ubuntu/standard/5.0/Dockerfile b/ubuntu/standard/5.0/Dockerfile index eef4a90e..fd83318e 100644 --- a/ubuntu/standard/5.0/Dockerfile +++ b/ubuntu/standard/5.0/Dockerfile @@ -203,8 +203,10 @@ RUN set -ex \ ENV NODE_12_VERSION="12.22.2" ENV NODE_14_VERSION="14.17.2" +ENV NODE_16_VERSION="16.13.0" -RUN n $NODE_14_VERSION && npm install --save-dev -g -f grunt && npm install --save-dev -g -f grunt-cli && npm install --save-dev -g -f webpack \ +RUN n $NODE_16_VERSION && npm install --save-dev -g -f grunt && npm install --save-dev -g -f grunt-cli && npm install --save-dev -g -f webpack \ + && n $NODE_14_VERSION && npm install --save-dev -g -f grunt && npm install --save-dev -g -f grunt-cli && npm install --save-dev -g -f webpack \ && n $NODE_12_VERSION && npm install --save-dev -g -f grunt && npm install --save-dev -g -f grunt-cli && npm install --save-dev -g -f webpack \ && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ diff --git a/ubuntu/standard/5.0/runtimes.yml b/ubuntu/standard/5.0/runtimes.yml index 96c50655..e91f3b4f 100644 --- a/ubuntu/standard/5.0/runtimes.yml +++ b/ubuntu/standard/5.0/runtimes.yml @@ -99,6 +99,10 @@ runtimes: commands: - echo "Installing Node.js version 14 ..." - n $NODE_14_VERSION + 16: + commands: + - echo "Installing Node.js version 16 ..." + - n $NODE_16_VERSION dotnet: versions: 3.1: From f48a3759095a2ae88f0703c78484d334f0973987 Mon Sep 17 00:00:00 2001 From: Jez Hodges Date: Tue, 23 Nov 2021 16:06:01 +0000 Subject: [PATCH 2/3] Update Dockerfile --- ubuntu/standard/5.0/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/standard/5.0/Dockerfile b/ubuntu/standard/5.0/Dockerfile index fd83318e..d3ff0949 100644 --- a/ubuntu/standard/5.0/Dockerfile +++ b/ubuntu/standard/5.0/Dockerfile @@ -434,7 +434,7 @@ VOLUME /var/lib/docker FROM runtimes_n_corretto AS std_v5 # Activate runtime versions specific to image version. -RUN n $NODE_14_VERSION +RUN n $NODE_16_VERSION RUN pyenv global $PYTHON_39_VERSION RUN phpenv global $PHP_80_VERSION RUN rbenv global $RUBY_27_VERSION From 272da216e71225c91fa66422cff6b251dd3a4115 Mon Sep 17 00:00:00 2001 From: Jez Hodges Date: Fri, 13 May 2022 10:27:52 +0100 Subject: [PATCH 3/3] Update to node 16.15.0 --- ubuntu/standard/5.0/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/standard/5.0/Dockerfile b/ubuntu/standard/5.0/Dockerfile index d3ff0949..c24be8ef 100644 --- a/ubuntu/standard/5.0/Dockerfile +++ b/ubuntu/standard/5.0/Dockerfile @@ -203,7 +203,7 @@ RUN set -ex \ ENV NODE_12_VERSION="12.22.2" ENV NODE_14_VERSION="14.17.2" -ENV NODE_16_VERSION="16.13.0" +ENV NODE_16_VERSION="16.15.0" RUN n $NODE_16_VERSION && npm install --save-dev -g -f grunt && npm install --save-dev -g -f grunt-cli && npm install --save-dev -g -f webpack \ && n $NODE_14_VERSION && npm install --save-dev -g -f grunt && npm install --save-dev -g -f grunt-cli && npm install --save-dev -g -f webpack \