From 43dcaebee27a2d0d7ec3fa78fa9b3b8da6a3caf9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 13:06:39 +0000 Subject: [PATCH] build(deps): bump alpine from 3.21 to 3.23 in /scripts Bumps alpine from 3.21 to 3.23. --- updated-dependencies: - dependency-name: alpine dependency-version: '3.23' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- scripts/Dockerfile.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/Dockerfile.in b/scripts/Dockerfile.in index a99349b9..c79923c5 100644 --- a/scripts/Dockerfile.in +++ b/scripts/Dockerfile.in @@ -15,7 +15,7 @@ ## The curl, jq and toybox containers build the corresponding binaries. -FROM alpine:3.21 AS curl +FROM alpine:3.23 AS curl COPY third_party/curl /curl-src @@ -24,7 +24,7 @@ COPY third_party/static-curl/build.sh /build.sh RUN /build.sh -FROM alpine:3.21 AS jq +FROM alpine:3.23 AS jq COPY third_party/jq /jq-src @@ -33,7 +33,7 @@ COPY build-jq.sh /build-jq.sh RUN /build-jq.sh -FROM alpine:3.21 AS toybox +FROM alpine:3.23 AS toybox COPY third_party/toybox /toybox-src @@ -42,7 +42,7 @@ COPY build-toybox.sh /build-toybox.sh RUN /build-toybox.sh -FROM alpine:3.21 AS inotify +FROM alpine:3.23 AS inotify COPY inotify /inotify @@ -51,7 +51,7 @@ RUN /inotify/build.sh ## The extras container extracts licenses and package data from Alpine packages. -FROM alpine:3.21 AS extras +FROM alpine:3.23 AS extras COPY third_party/license-list-data /license-list-data-src