diff --git a/ci/devtools.Dockerfile b/ci/devtools.Dockerfile index 758f262..6363b95 100644 --- a/ci/devtools.Dockerfile +++ b/ci/devtools.Dockerfile @@ -27,7 +27,7 @@ RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.c WORKDIR /usr/local/vcpkg # Pin vcpkg to the latest released version. Renovatebot sends PRs when there is a new release. -RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.19.tar.gz" | \ +RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.25.tar.gz" | \ tar --strip-components=1 -zxf - \ && ./bootstrap-vcpkg.sh \ && /usr/local/vcpkg/vcpkg fetch cmake \ diff --git a/cloud-run-hello-world/Dockerfile b/cloud-run-hello-world/Dockerfile index 9033130..70a29bd 100644 --- a/cloud-run-hello-world/Dockerfile +++ b/cloud-run-hello-world/Dockerfile @@ -39,7 +39,7 @@ RUN apk update && \ # Use `vcpkg`, a package manager for C++, to install WORKDIR /usr/local/vcpkg ENV VCPKG_FORCE_SYSTEM_BINARIES=1 -RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.19.tar.gz" | \ +RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.25.tar.gz" | \ tar --strip-components=1 -zxf - \ && ./bootstrap-vcpkg.sh -disableMetrics diff --git a/getting-started/Dockerfile b/getting-started/Dockerfile index e9506a5..67a078a 100644 --- a/getting-started/Dockerfile +++ b/getting-started/Dockerfile @@ -42,7 +42,7 @@ RUN apt update && \ FROM devtools AS build WORKDIR /v/vcpkg -RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.19.tar.gz" | \ +RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.25.tar.gz" | \ tar --strip-components=1 -zxf - \ && ./bootstrap-vcpkg.sh -disableMetrics diff --git a/populate-bucket/Dockerfile b/populate-bucket/Dockerfile index d0d3d63..adbbbe6 100644 --- a/populate-bucket/Dockerfile +++ b/populate-bucket/Dockerfile @@ -23,7 +23,7 @@ FROM base AS devtools ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt install -y curl gzip tar unzip WORKDIR /var/tmp/build/vcpkg -RUN curl -s -L https://github.com/Microsoft/vcpkg/archive/2024.03.19.tar.gz | \ +RUN curl -s -L https://github.com/Microsoft/vcpkg/archive/2024.03.25.tar.gz | \ tar -xzf - --strip-components=1 # Install the typical development tools, zip + unzip are used by vcpkg to