-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
Closed
StefanScherer/dockerfiles-windows
#232Labels
windowsIssues and PRs related to the Windows platform.Issues and PRs related to the Windows platform.
Description
I have problems running the newer versions of Node 8 in a Windows Nanoserver Container:
-
Version:
8.7.0, 8.8.0, 8.8.1 -
Platform:
Windows -
Subsystem:
Windows Nanoserver Container running in Windows 10 / Windows Server 2016
To reproduce the problem, just download the node.exe of specific versions in a Windows NanoServer container:
PS C:\> docker run -it microsoft/nanoserver powershell
Then inside the container:
PS C:\> $ProgressPreference = 'SilentlyContinue'
PS C:\> iwr -useb https://nodejs.org/dist/v6.11.5/win-x64/node.exe -outfile node-6.11.5.exe
PS C:\> .\node-6.11.5.exe --version
v6.11.5
PS C:\> iwr -useb https://nodejs.org/dist/v8.6.0/win-x64/node.exe -outfile node-8.6.0.exe
PS C:\> .\node-8.6.0.exe --version
v8.6.0
Beginning with Node 8.7.0 this stops working:
PS C:\> iwr -useb https://nodejs.org/dist/v8.7.0/win-x64/node.exe -outfile node-8.7.0.exe
PS C:\> .\node-8.7.0.exe --version
PS C:\>
PS C:\> iwr -useb https://nodejs.org/dist/v8.8.0/win-x64/node.exe -outfile node-8.8.0.exe
PS C:\> .\node-8.8.0.exe --version
PS C:\>
PS C:\> iwr -useb https://nodejs.org/dist/v8.8.1/win-x64/node.exe -outfile node-8.8.1.exe
PS C:\> .\node-8.8.1.exe --version
PS C:\>
Metadata
Metadata
Assignees
Labels
windowsIssues and PRs related to the Windows platform.Issues and PRs related to the Windows platform.