diff options
author | Jake Petroules <jake.petroules@qt.io> | 2017-08-21 23:31:51 -0700 |
---|---|---|
committer | Jake Petroules <jake.petroules@qt.io> | 2017-08-22 08:54:53 +0000 |
commit | 6fc3adcab9b7d0010ad43f23386dc4e94f61eda9 (patch) | |
tree | e334ca86537fc77c68a4f007a9b4398f033b2d6d /docker | |
parent | ab1f8a1c6fbf40e2b94fa9112f0e5b85e7ed68b8 (diff) |
Diffstat (limited to 'docker')
-rw-r--r-- | docker/windowsservercore/Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docker/windowsservercore/Dockerfile b/docker/windowsservercore/Dockerfile index 14890248b..942ecbd2b 100644 --- a/docker/windowsservercore/Dockerfile +++ b/docker/windowsservercore/Dockerfile @@ -22,7 +22,7 @@ RUN @powershell -NoProfile -ExecutionPolicy Bypass -Command \ $Env:chocolateyVersion = '0.10.5' ; \ $Env:chocolateyUseWindowsCompression = 'false' ; \ "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" -RUN choco install -y qbs --version 1.8.1 -RUN choco install -y unzip --version 6.0 -RUN choco install -y visualcpp-build-tools --version 14.0.25420.1 -RUN choco install -y zip --version 3.0 +RUN choco install -y qbs --version 1.8.1 && qbs --version +RUN choco install -y unzip --version 6.0 && unzip -v +RUN choco install -y visualcpp-build-tools --version 14.0.25420.1 && dir "%PROGRAMFILES(X86)%\Microsoft Visual C++ Build Tools" +RUN choco install -y zip --version 3.0 && zip -v |