From e14fe99082fde9fca1b8fd5662646d3b9a17f3d8 Mon Sep 17 00:00:00 2001 From: Scott Kool <1058997+ComradeCow@users.noreply.github.com> Date: Mon, 20 Apr 2026 15:35:41 -0500 Subject: [PATCH 1/2] Update nodejs to v24 --- linux/base.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/base.Dockerfile b/linux/base.Dockerfile index f71cef45..117fcf44 100644 --- a/linux/base.Dockerfile +++ b/linux/base.Dockerfile @@ -25,8 +25,8 @@ RUN tdnf update -y --refresh && \ azurelinux-repos-ms-non-oss-3.0 && \ tdnf repolist --refresh && \ bash ./tdnfinstall.sh \ - nodejs \ - nodejs-npm \ + nodejs24 \ + nodejs24-npm \ xz \ git \ gpgme \ From 2186577cfe6c2546dc36268338bf1f1ee64c5f8b Mon Sep 17 00:00:00 2001 From: Scott Kool <1058997+ComradeCow@users.noreply.github.com> Date: Tue, 21 Apr 2026 12:55:50 -0500 Subject: [PATCH 2/2] Fix test --- tests/PSinLinuxCloudShellImage.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PSinLinuxCloudShellImage.Tests.ps1 b/tests/PSinLinuxCloudShellImage.Tests.ps1 index 7db07974..cc43926f 100755 --- a/tests/PSinLinuxCloudShellImage.Tests.ps1 +++ b/tests/PSinLinuxCloudShellImage.Tests.ps1 @@ -18,7 +18,7 @@ Describe "Various programs installed with expected versions" { It "Static Versions" { # These programs are installed explicitly with specific versions - $script:pmap["Node.JS"].Version | Should -Be '20.14.0' + $script:pmap["Node.JS"].Version | Should -Be '24.14.1' $script:pmap["PowerShell"].Version | Should -BeLike '7.6*' }