From 6d1a92d1de36a309c78efa59cc1a7b83d9bd55cd Mon Sep 17 00:00:00 2001 From: Andrew Hosgood Date: Tue, 29 Oct 2024 17:18:48 +0000 Subject: [PATCH] Update the LTS version of NodeJS from iron to jod --- CHANGELOG.md | 3 ++- docker/tna-python/Dockerfile | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b61e82f..d90f43b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Pre-installed the previous Node LTS version as well as the latest +- Pre-installed the previous NodeJS LTS version as well as the latest - Semantically versioned images get tagged with their major and minor versions as well as the full version number ### Changed - Updated `black`, `flake8`, `prettier`, `stylelint`, `stylelint-config-standard-scss` and `stylelint-selector-bem-pattern` in the dev image +- Updated the LTS version of NodeJS from `iron` to `jod` ### Deprecated ### Removed diff --git a/docker/tna-python/Dockerfile b/docker/tna-python/Dockerfile index 74bd281..4eb2cdf 100644 --- a/docker/tna-python/Dockerfile +++ b/docker/tna-python/Dockerfile @@ -175,14 +175,14 @@ FROM "$USER_IMAGE" # ========================================== # Install the latest LTS version of Node.js, # but keeping within the releases code-named -# "iron" (v20.x) +# "jod" (v22.x) # (Install the previous LTS release, just in # case some applicaitons still use it) # ========================================== RUN . "$NVM_DIR/nvm.sh"; \ - nvm install lts/hydrogen; \ nvm install lts/iron; \ - nvm use lts/iron + nvm install lts/jod; \ + nvm use lts/jod # ========================================== # Into our .local/bin/ directory copy in the