From a9727171e25cf588f3cc2b7a5b751f637028b82c Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 7 Feb 2025 23:37:10 +0100 Subject: [PATCH] build: vcpkg is already installed in the macOS docker --- dist/macOS/arm64.Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dist/macOS/arm64.Dockerfile b/dist/macOS/arm64.Dockerfile index 762ae302d..c76c3a742 100644 --- a/dist/macOS/arm64.Dockerfile +++ b/dist/macOS/arm64.Dockerfile @@ -5,12 +5,8 @@ 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 && \ - git -C /vcpkg pull +# Update vcpkg +RUN git -C /vcpkg pull ## Install make RUN --mount=type=cache,target=/var/lib/apt/lists/ apt update && apt install -y make