File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,8 +140,8 @@ Update the Dockerfile by adding the following lines. This will copy node and npm
140
140
FROM mcr.microsoft.com/powershell:nanoserver-1903 AS downloadnodejs
141
141
SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop';$ProgressPreference='silentlyContinue';"]
142
142
RUN Invoke-WebRequest -OutFile nodejs.zip -UseBasicParsing "https://nodejs.org/dist/v10.16.3/node-v10.16.3-win-x64.zip"; `
143
- RUN Expand-Archive nodejs.zip -DestinationPath C:\; `
144
- RUN Rename-Item "C:\node-v10.16.3-win-x64" c:\nodejs
143
+ Expand-Archive nodejs.zip -DestinationPath C:\; `
144
+ Rename-Item "C:\node-v10.16.3-win-x64" c:\nodejs
145
145
146
146
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2-nanoserver-1903 AS base
147
147
WORKDIR /app
You can’t perform that action at this time.
0 commit comments