diff --git a/22/windows-2019/Dockerfile b/22/windows-2019/Dockerfile index fcbd7f2fd..c2ea797d6 100644 --- a/22/windows-2019/Dockerfile +++ b/22/windows-2019/Dockerfile @@ -58,7 +58,7 @@ COPY docker-entrypoint.ps1 C:/docker-entrypoint.ps1 RUN $newPath = ('C:\nodejs;{0}' -f $env:PATH); \ Write-Host ('Updating PATH: {0}' -f $newPath); \ [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine); \ - # Because we need to use it in the current session + # Because we need to use it in the current session $env:PATH = $newPath; \ node --version; \ npm --version; diff --git a/22/windows-2022/Dockerfile b/22/windows-2022/Dockerfile index f185f46f9..2ed0e0f24 100644 --- a/22/windows-2022/Dockerfile +++ b/22/windows-2022/Dockerfile @@ -58,7 +58,7 @@ COPY docker-entrypoint.ps1 C:/docker-entrypoint.ps1 RUN $newPath = ('C:\nodejs;{0}' -f $env:PATH); \ Write-Host ('Updating PATH: {0}' -f $newPath); \ [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine); \ - # Because we need to use it in the current session + # Because we need to use it in the current session $env:PATH = $newPath; \ node --version; \ npm --version; diff --git a/Dockerfile-windows.template b/Dockerfile-windows.template index ddeafee47..1f606327d 100644 --- a/Dockerfile-windows.template +++ b/Dockerfile-windows.template @@ -47,7 +47,7 @@ COPY docker-entrypoint.ps1 C:/docker-entrypoint.ps1 RUN $newPath = ('C:\nodejs;{0}' -f $env:PATH); \ Write-Host ('Updating PATH: {0}' -f $newPath); \ [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine); \ - # Because we need to use it in the current session + # Because we need to use it in the current session $env:PATH = $newPath; \ node --version; \ npm --version;