2018-09-11 18:19:04 +00:00
|
|
|
FROM microsoft/windowsservercore:1803 AS git
|
2018-09-11 23:06:41 +00:00
|
|
|
SHELL ["powershell.exe", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
2018-09-11 18:19:04 +00:00
|
|
|
|
|
|
|
RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; \
|
2018-09-11 23:06:41 +00:00
|
|
|
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
|
2018-09-11 18:19:04 +00:00
|
|
|
|
2018-09-11 23:06:41 +00:00
|
|
|
FROM microsoft/windowsservercore:1803
|
2018-09-11 18:19:04 +00:00
|
|
|
COPY --from=git /git /git
|
|
|
|
|
2018-09-11 23:06:41 +00:00
|
|
|
ADD windows/* /bin/
|
2018-09-11 18:19:04 +00:00
|
|
|
|
|
|
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
2018-09-11 23:06:41 +00:00
|
|
|
CMD [ "powershell", "C:\\bin\\clone.ps1" ]
|