FROM microsoft/windowsservercore:1709 AS git SHELL ["powershell.exe", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; \ Invoke-WebRequest -UseBasicParsing https://github.com/git-for-windows/git/releases/download/v2.19.0-rc2.windows.1/MinGit-2.19.0.rc2.windows.1-64-bit.zip -OutFile git.zip; \ Expand-Archive git.zip -DestinationPath C:\git FROM microsoft/powershell:nanoserver-1709 COPY --from=git /git /git ADD windows/* /bin/ # https://github.com/PowerShell/PowerShell/issues/6211#issuecomment-367477137 USER ContainerAdministrator RUN setx /M PATH "%PATH%;C:\Program Files\PowerShell" ENV HOME C:\\Users\\ContainerAdministrator SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] CMD [ "pwsh", "C:\\bin\\clone.ps1" ]