From d41fbd353b7c35f19819d77092d2b222ce2bd516 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Wed, 3 Dec 2025 22:35:48 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.23 --- 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..cb099bcb 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.23 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..7d0a06b2 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.23 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..46579a80 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.23 AS build # Install the typical development tools for C++, and # the base OS headers and libraries.