From 8c6a9c8c97fafd8c7f5d5761661fc3b053d99c47 Mon Sep 17 00:00:00 2001 From: Matthew Bentley Date: Thu, 19 Apr 2018 22:43:19 -0400 Subject: [PATCH] 123 --- itests/Dockerfile.windows | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itests/Dockerfile.windows b/itests/Dockerfile.windows index b88bfe6d..591b2754 100644 --- a/itests/Dockerfile.windows +++ b/itests/Dockerfile.windows @@ -1,6 +1,6 @@ FROM python:3 -RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Invoke-WebRequest 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.2/MinGit-2.12.2.2-64-bit.zip' -OutFile MinGit.zip +RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.2/MinGit-2.12.2.2-64-bit.zip' -OutFile MinGit.zip RUN Expand-Archive c:\MinGit.zip -DestinationPath c:\MinGit; \ $env:PATH = $env:PATH + ';C:\MinGit\cmd\;C:\MinGit\cmd'; \