This repository was archived by the owner on May 31, 2019. It is now read-only.

Description
Steps to reproduce the issue
(e.g. copy your Dockerfile or docker-compose.yml file here)
The 1709-based build images don't have powershell installed, which means I can't run my build inside of the build images:
docker run -it microsoft/aspnetcore-build:2.0 cmd
Then inside the build image:
Microsoft Windows [Version 10.0.16299.192]
(c) 2017 Microsoft Corporation. All rights reserved.
C:\>powershell
'powershell' is not recognized as an internal or external command,
operable program or batch file.
C:\>
Nanoserver starting with 1709 no longer includes Powershell, which makes sense, but I'm now strictly limited to cmd-based builds inside my build container (or I install Powershell as part of my container build).
Expected behavior
Powershell to be there like it is in the sac2016 images. You could use the microsoft/powershell:nanoserver images as the base instead of just plain nanoserver ones.
Actual behavior
It is not.