Skip to content

Commit

Permalink
Update the LTS version of NodeJS from iron to jod
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Oct 29, 2024
1 parent 7cca5fb commit 6d1a92d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions docker/tna-python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6d1a92d

Please sign in to comment.