From 149a608e932cdde447b5bc9bb7d1466d36ae5b81 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Fri, 6 Dec 2024 02:34:41 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.21 --- 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 d174ed97..63929ae8 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.20 AS build +FROM alpine:3.21 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 3c0fd176..2d7a240f 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.20 AS build +FROM alpine:3.21 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 fdd691a4..b417ea12 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.20 AS build +FROM alpine:3.21 AS build # Install the typical development tools for C++, and # the base OS headers and libraries.