From 0d7bc8d1db6cfa3fc6ad3f633463e99f5da75947 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Mon, 11 May 2026 12:36:33 +0100 Subject: [PATCH] build: Update apline version to 3.22 There is no Rust 1.95.0 docker image under alpine 3.20. The latest version is 3.22, so the Dockerfile is updated to use this version. --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 38592fff..2f8619a2 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,6 +1,6 @@ # Builds release binaries for Radicle. ARG RUST_VERSION="1.85" -ARG ALPINE_VERSION="3.20" +ARG ALPINE_VERSION="3.22" FROM rust:${RUST_VERSION}-alpine${ALPINE_VERSION} as builder LABEL maintainer="Radicle Team "