1
0
mirror of synced 2025-02-11 08:12:58 +01:00

build: Install vcpkg again in the ARM64 macOS docker

This commit is contained in:
WerWolv 2025-02-06 15:21:07 +01:00
parent 99cb51e813
commit 540e8ed602

View File

@ -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