From 56717dab38540dcc701ca1187d575d1062c21492 Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Sun, 25 Nov 2018 14:17:53 +0100 Subject: [PATCH] Remove separate VsDevEnv script, move Library upwards --- windows/Dockerfile | 3 +-- windows/{lib.ps1 => Library.ps1} | 0 2 files changed, 1 insertion(+), 2 deletions(-) rename windows/{lib.ps1 => Library.ps1} (100%) diff --git a/windows/Dockerfile b/windows/Dockerfile index 699bc7b..4fb77c4 100644 --- a/windows/Dockerfile +++ b/windows/Dockerfile @@ -22,7 +22,7 @@ RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tl python -m pip --no-cache-dir install --no-warn-script-location \ wheel \ twine -COPY VsDevEnv.ps1 C:/VsDevEnv.ps1 +COPY Library.ps1 C:/Library.ps1 RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ (New-Object Net.WebClient).DownloadFile('https://developer.nvidia.com/compute/cuda/9.2/Prod2/network_installers2/cuda_9.2.148_win10_network', 'C:/cuda_9.2.148_win10_network.exe'); \ @@ -121,4 +121,3 @@ RUN python -m pip --no-cache-dir install --no-warn-script-location \ numpy \ scipy \ pandas -COPY lib.ps1 C:/lib.ps1 diff --git a/windows/lib.ps1 b/windows/Library.ps1 similarity index 100% rename from windows/lib.ps1 rename to windows/Library.ps1 -- GitLab