Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions scripts/Dockerfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

## The curl, jq and toybox containers build the corresponding binaries.

FROM alpine:3.21 AS curl
FROM alpine:3.22 AS curl

COPY third_party/curl /curl-src

Expand All @@ -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.22 AS jq

COPY third_party/jq /jq-src

Expand All @@ -33,7 +33,7 @@ COPY build-jq.sh /build-jq.sh
RUN /build-jq.sh


FROM alpine:3.21 AS toybox
FROM alpine:3.22 AS toybox

COPY third_party/toybox /toybox-src

Expand All @@ -42,7 +42,7 @@ COPY build-toybox.sh /build-toybox.sh
RUN /build-toybox.sh


FROM alpine:3.21 AS inotify
FROM alpine:3.22 AS inotify

COPY inotify /inotify

Expand All @@ -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.22 AS extras

COPY third_party/license-list-data /license-list-data-src

Expand Down