From 5e5336075df51e7791610eddf78ec346da34177f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 30 Jan 2026 01:29:58 +0000 Subject: [PATCH] Update alpine Docker tag to v3.23.3 --- img/apk/Dockerfile | 4 ++-- img/go/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/img/apk/Dockerfile b/img/apk/Dockerfile index e1970f77..c1828c9a 100644 --- a/img/apk/Dockerfile +++ b/img/apk/Dockerfile @@ -1,8 +1,8 @@ -FROM alpine:3.22.2 AS clang_layer +FROM alpine:3.23.3 AS clang_layer RUN apk --no-cache add clang20-extra-tools # RUN ldd /usr/bin/clang-format && exit 1 -FROM alpine:3.22.2 +FROM alpine:3.23.3 # hadolint ignore=DL3059 RUN adduser -D standards diff --git a/img/go/Dockerfile b/img/go/Dockerfile index 73dca295..0e10e315 100644 --- a/img/go/Dockerfile +++ b/img/go/Dockerfile @@ -9,7 +9,7 @@ RUN go install github.com/mgechev/revive@latest \ && go install github.com/yoheimuta/protolint/cmd/protolint@latest -FROM alpine:3.22.2 +FROM alpine:3.23.3 RUN adduser -D standards