From 1f08badc3468374028a0964f4cd1e39bbd0f4556 Mon Sep 17 00:00:00 2001 From: Jean Felder Date: Fri, 26 Apr 2024 21:03:49 +0200 Subject: [PATCH] fix --- Dockerfile.windows | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.windows b/Dockerfile.windows index 9c969c25..3c26e7cb 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -16,13 +16,13 @@ RUN Start-Process -FilePath "$env:TEMP\vs_buildtools.exe" \ # install vcpkg # RUN $env:VCPKG_INSTALL_DIR="c:\\vcpkg" # RUN $env:VCPKG_DEFAULT_TRIPLET="x64-windows" -RUN git clone https://github.com/microsoft/vcpkg c:\vcpkg && \ - cd c:\vcpkg && \ - bootstrap-vcpkg.bat -disableMetrics && \ +RUN git clone https://github.com/microsoft/vcpkg c:\vcpkg; \ + cd c:\vcpkg; \ + bootstrap-vcpkg.bat -disableMetrics; \ .\vcpkg install cgal boost-program-options boost-timer boost-test --triplet x64-windows # build sfcgal -RUN cd $env:starter_path && \ +RUN cd $env:starter_path; \ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DSFCGAL_BUILD_TESTS=OFF -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALL_DIR\scripts\buildsystems\vcpkg.cmake" # Restore default shell for Windows containers.