From 7d26b55cb5301485729116b9842299558e6b54c2 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Thu, 28 Oct 2021 13:39:23 +0200 Subject: [PATCH] Dockerfile: install llvm/clang This is required by the bpf-header compat package. Signed-off-by: John Crispin --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 95d845ace..5a1ab7ba0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,9 +3,9 @@ FROM ubuntu:20.04 RUN apt-get update \ && DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata \ && apt-get install -y \ - time git-core build-essential gcc-multilib \ + 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 \ + python3 python3-pip python3-yaml libssl-dev rsync llvm llvm-12 \ && apt-get clean RUN git config --global user.email "you@example.com" RUN git config --global user.name "Your Name"