Skip to content

Commit

Permalink
vcpkg: fix arm64 triplet
Browse files Browse the repository at this point in the history
  • Loading branch information
amazy committed Dec 11, 2024
1 parent 764fe2a commit 35c7e59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/orthanc/Dockerfile.builder-vcpkg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 35c7e59

Please sign in to comment.