From a0120984e396a6e66a3373aba4f9149d6631d53a Mon Sep 17 00:00:00 2001 From: Yorick Downe Date: Wed, 5 Aug 2026 13:21:17 +0100 Subject: [PATCH] Reth source with LLVM 23 --- reth/Dockerfile.source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reth/Dockerfile.source b/reth/Dockerfile.source index d293d89c..75bc98d4 100644 --- a/reth/Dockerfile.source +++ b/reth/Dockerfile.source @@ -9,7 +9,7 @@ ARG DOCKER_REPO RUN apt-get update && apt-get install -y --no-install-recommends \ lsb-release wget gnupg ca-certificates -ARG LLVM_VER=22 +ARG LLVM_VER=23 RUN wget -qO /tmp/llvm.sh https://apt.llvm.org/llvm.sh && \ chmod +x /tmp/llvm.sh && /tmp/llvm.sh "$LLVM_VER" all && \ rm /tmp/llvm.sh