Skip to content

Commit

Permalink
Remove empty smoke test layer
Browse files Browse the repository at this point in the history
  • Loading branch information
zZHorizonZz committed Sep 6, 2024
1 parent 0547704 commit b98f859
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 22/windows-2019/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion 22/windows-2022/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-windows.template
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b98f859

Please sign in to comment.