From 09312791a71dcd7d826e3819ad79da3082c6e1f4 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Mon, 6 Apr 2026 15:44:18 +0000 Subject: [PATCH] fix(ci): Add wget to fix llvm.sh in dockerfile Reviewed-on: https://forgejo.ellis.link/continuwuation/continuwuity/pulls/1616 Reviewed-by: nex Co-authored-by: Tulir Asokan Co-committed-by: Tulir Asokan --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index c7e22f092..aa957be48 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,13 +15,13 @@ ARG LLVM_VERSION=21 # Install repo tools # Line one: compiler tools -# Line two: curl, for downloading binaries +# Line two: curl, for downloading binaries and wget because llvm.sh is broken with curl # Line three: for xx-verify RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ --mount=type=cache,target=/var/lib/apt,sharing=locked \ apt-get update && apt-get install -y \ pkg-config make jq \ - curl git software-properties-common \ + wget curl git software-properties-common \ file # LLVM packages