From 540e8ed6029b46b61ab26fc0fcebe1d59bb2441e Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 6 Feb 2025 15:21:07 +0100 Subject: [PATCH] build: Install vcpkg again in the ARM64 macOS docker --- dist/macOS/arm64.Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dist/macOS/arm64.Dockerfile b/dist/macOS/arm64.Dockerfile index 0b6e526af..64c16c9f3 100644 --- a/dist/macOS/arm64.Dockerfile +++ b/dist/macOS/arm64.Dockerfile @@ -5,6 +5,12 @@ ENV MACOSX_DEPLOYMENT_TARGET 13.0 # -- DOWNLOADING STUFF +# Install vcpkg +RUN cd / &&\ + git clone --depth 1 https://github.com/Microsoft/vcpkg.git vcpkg &&\ + cd /vcpkg &&\ + ./bootstrap-vcpkg.sh -disableMetrics \ + ## Install make RUN --mount=type=cache,target=/var/lib/apt/lists/ apt update && apt install -y make