Skip to content

Commit 7f95d8e

Browse files
authored
Merge pull request #6397 from WilliamAntonRohm/issue-5087
visualstudio-docs issue 5087 -- command mismatch between code samples
2 parents 0d0f338 + 392464d commit 7f95d8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/containers/container-tools-react.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ Update the Dockerfile by adding the following lines. This will copy node and npm
140140
FROM mcr.microsoft.com/powershell:nanoserver-1903 AS downloadnodejs
141141
SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop';$ProgressPreference='silentlyContinue';"]
142142
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
145145
146146
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2-nanoserver-1903 AS base
147147
WORKDIR /app

0 commit comments

Comments
 (0)