From c68e503650b3049718aca378a9cd7d306b62db38 Mon Sep 17 00:00:00 2001 From: Filipe PINTO Date: Thu, 31 Jul 2025 14:30:36 +0200 Subject: [PATCH] Update to alpine:3.22 for docker package --- contrib/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/docker/Dockerfile b/contrib/docker/Dockerfile index 8dc3c8ab7e..20fbfcafd0 100644 --- a/contrib/docker/Dockerfile +++ b/contrib/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.21 AS builder +FROM alpine:3.22 AS builder ARG TARGETPLATFORM WORKDIR /tmp/hurl-docker COPY . /tmp/hurl-docker @@ -11,7 +11,7 @@ RUN apk add --no-cache bash git && \ bash -c "bin/install_rust.sh" && \ bash -c "./bin/release/release.sh" -FROM alpine:3.21 AS runner +FROM alpine:3.22 AS runner ARG docker_build_date ARG docker_build_tag LABEL "org.opencontainers.image.source"="https://github.com/Orange-OpenSource/hurl"