From 43e35b54468722e23076847040e4ef86f4e2a2b0 Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Sat, 2 Aug 2025 22:31:13 -0400 Subject: [PATCH] [BUGfIX] Docker Issue: LLVM clang-format 21 unavailable. https://github.com/llvm/llvm-project/issues/151221 Using 20 branch: https://github.com/llvm/llvm-project/issues/151221#issuecomment-3137269853 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 38a2a91..1762e0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,7 +71,7 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* ADD https://apt.llvm.org/llvm-snapshot.gpg.key llvm-snapshot.gpg.key RUN apt-key add llvm-snapshot.gpg.key && \ - apt-add-repository "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy main" && \ + apt-add-repository -y "deb https://apt.llvm.org/plucky/ llvm-toolchain-plucky-20 main" && \ apt-get -y update && \ apt-get -y install --no-install-recommends --no-install-suggests clang-format-19 && \ update-alternatives --install /usr/bin/clang-format clang-format $(which clang-format-19) 100 && \