From b41b53b9d818d21341a57d5e7eb9784153f1a681 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 31 Jan 2022 07:01:31 +0100 Subject: [PATCH] Docker: do not install llvm Let the buildsystem build the toolchain. Fixes: WIFI-3487 Signed-off-by: John Crispin --- docker/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index c9c0aaeaf..fcd2c5f62 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,8 +5,7 @@ RUN apt-get update \ && apt-get install -y \ time git-core build-essential gcc-multilib clang \ libncurses5-dev zlib1g-dev gawk flex gettext wget unzip python \ - python3 python3-pip python3-yaml libssl-dev rsync llvm llvm-12 \ - clang-12 \ + python3 python3-pip python3-yaml libssl-dev rsync \ && apt-get clean RUN git config --global user.email "you@example.com" RUN git config --global user.name "Your Name"