diff --git a/ci/devtools.Dockerfile b/ci/devtools.Dockerfile index 7ff3b61..028ccf2 100644 --- a/ci/devtools.Dockerfile +++ b/ci/devtools.Dockerfile @@ -45,7 +45,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.04.26.tar.gz" | \ +RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.05.24.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 fdd691a..3735d0d 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.04.26.tar.gz" | \ +RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.05.24.tar.gz" | \ tar --strip-components=1 -zxf - \ && ./bootstrap-vcpkg.sh -disableMetrics diff --git a/getting-started/Dockerfile b/getting-started/Dockerfile index 2cfcbe0..d79b937 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.04.26.tar.gz" | \ +RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.05.24.tar.gz" | \ tar --strip-components=1 -zxf - \ && ./bootstrap-vcpkg.sh -disableMetrics diff --git a/populate-bucket/Dockerfile b/populate-bucket/Dockerfile index 00b5439..32ba9cf 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.04.26.tar.gz | \ +RUN curl -s -L https://github.com/Microsoft/vcpkg/archive/2024.05.24.tar.gz | \ tar -xzf - --strip-components=1 # Install the typical development tools, zip + unzip are used by vcpkg to