From 3eed0b15b04e5775d4a6f37bca0061c5bcf688e3 Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <moritz@ucworks.org> Date: Tue, 18 Sep 2018 12:57:47 +0200 Subject: [PATCH] Add Basler Pylon Software --- windows/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/windows/Dockerfile b/windows/Dockerfile index 11fcc8b..dffcf3a 100644 --- a/windows/Dockerfile +++ b/windows/Dockerfile @@ -46,6 +46,11 @@ RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tl [Environment]::SetEnvironmentVariable('Qt5_DIR', 'C:/Qt/5.11.1/msvc2017_64', [EnvironmentVariableTarget]::Machine); \ [Environment]::SetEnvironmentVariable('EGL_PLATFORM_DIR', 'C:/Qt/5.11.1/msvc2017_64/include/QtANGLE', [EnvironmentVariableTarget]::Machine) +RUN curl.exe -L -o C:/Basler_pylon_5.1.0.12681.exe https://www.baslerweb.com/fp-1535524585/media/downloads/software/pylon_software/Basler_pylon_5.1.0.12681.exe; \ + Start-Process C:/Basler_pylon_5.1.0.12681.exe -NoNewWindow -Wait -ArgumentList '/quiet /install=SDKs /targetpath=C:/Pylon5'; \ + Remove-Item -Force C:/Basler_pylon_5.1.0.12681.exe; \ + [Environment]::SetEnvironmentVariable('Pylon5_DIR', 'C:/Pylon5/Development', [EnvironmentVariableTarget]::Machine); + RUN $vcpkg_dir = 'C:/vcpkg'; \ git clone --depth=1 https://github.com/BioroboticsLab/RF_vcpkg.git $vcpkg_dir; \ cd $vcpkg_dir; \ -- GitLab