From 64e00c0639c2b9ed6c7c05314ead02b62302c0ba Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Thu, 24 Oct 2019 19:06:41 +0200 Subject: [PATCH] windows1809: Force older dotnetfx that works in docker Newer version requires system reboot, which obviously doesn't work in docker --- windows1809/base/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/windows1809/base/Dockerfile b/windows1809/base/Dockerfile index 30d9ec5..276590d 100644 --- a/windows1809/base/Dockerfile +++ b/windows1809/base/Dockerfile @@ -6,6 +6,7 @@ COPY Profile.ps1 C:/Users/ContainerAdministrator/Documents/WindowsPowerShell/Mic RUN . $Profile; \ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ Invoke-Expression ((New-Object Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')); \ + Must-Run choco install -y dotnetfx --version 4.7.2.20180712 \ Must-Run choco install -y cmake --version 3.15.4 --installargs "ADD_CMAKE_TO_PATH=System"; \ Must-Run choco install -y kitware-ninja --version 1.8.2.8127911; \ Must-Run choco install -y \ -- GitLab