1
0
mirror of synced 2025-02-13 17:12:39 +01:00

build: vcpkg is already installed in the macOS docker

This commit is contained in:
WerWolv 2025-02-07 23:37:10 +01:00
parent a1634fb337
commit a9727171e2

View File

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