From 35c7e5976ef7e324b1f7dc568fcf64040301827a Mon Sep 17 00:00:00 2001 From: Alain Mazy Date: Wed, 11 Dec 2024 15:02:51 +0100 Subject: [PATCH] vcpkg: fix arm64 triplet --- docker/orthanc/Dockerfile.builder-vcpkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/orthanc/Dockerfile.builder-vcpkg b/docker/orthanc/Dockerfile.builder-vcpkg index 99d762d..19f9b16 100644 --- a/docker/orthanc/Dockerfile.builder-vcpkg +++ b/docker/orthanc/Dockerfile.builder-vcpkg @@ -25,7 +25,7 @@ RUN mkdir ~/.vcpkg/ RUN ./vcpkg integrate install # patch the triplet to produce only release builds -RUN bash -c '[[ $(uname -m) == "x86_64" ]] && echo "set(VCPKG_BUILD_TYPE release)" >> /vcpkg/triplets/x64-linux.cmake || echo "set(VCPKG_BUILD_TYPE release)" >> /vcpkg/triplets/arm64-linux.cmake' +RUN bash -c '[[ $(uname -m) == "x86_64" ]] && echo "set(VCPKG_BUILD_TYPE release)" >> /vcpkg/triplets/x64-linux.cmake || echo "set(VCPKG_BUILD_TYPE release)" >> /vcpkg/triplets/community/arm64-linux.cmake' # object storage prerequisites RUN ./vcpkg install cryptopp