From 68290ea5b08e99bfbebed54b7e9177d737e8562d Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Wed, 10 Jun 2026 01:10:43 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.24 --- batch/cpp_application/application/Dockerfile | 2 +- batch/parallel/application/Dockerfile | 2 +- cloud-run-hello-world/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/batch/cpp_application/application/Dockerfile b/batch/cpp_application/application/Dockerfile index 63929ae8..d192a35c 100644 --- a/batch/cpp_application/application/Dockerfile +++ b/batch/cpp_application/application/Dockerfile @@ -14,7 +14,7 @@ # We chose Alpine to build the image because it has good support for creating # statically-linked, small programs. -FROM alpine:3.21 AS build +FROM alpine:3.24 AS build # Install the typical development tools for C++, and # the base OS headers and libraries. diff --git a/batch/parallel/application/Dockerfile b/batch/parallel/application/Dockerfile index 2d7a240f..5da8475c 100644 --- a/batch/parallel/application/Dockerfile +++ b/batch/parallel/application/Dockerfile @@ -14,7 +14,7 @@ # We chose Alpine to build the image because it has good support for creating # statically-linked, small programs. -FROM alpine:3.21 AS build +FROM alpine:3.24 AS build # Install the typical development tools for C++, and # the base OS headers and libraries. diff --git a/cloud-run-hello-world/Dockerfile b/cloud-run-hello-world/Dockerfile index b417ea12..532094ca 100644 --- a/cloud-run-hello-world/Dockerfile +++ b/cloud-run-hello-world/Dockerfile @@ -16,7 +16,7 @@ # [START dockerfile] # We chose Alpine to build the image because it has good support for creating # statically-linked, small programs. -FROM alpine:3.21 AS build +FROM alpine:3.24 AS build # Install the typical development tools for C++, and # the base OS headers and libraries.