diff --git a/debian/control b/debian/control index 94d1c85f83b3..6cb7d1863e16 100644 --- a/debian/control +++ b/debian/control @@ -20,7 +20,7 @@ Package: libbcc Architecture: any Provides: libbpfcc, libbpfcc-dev Conflicts: libbpfcc, libbpfcc-dev -Depends: libc6, libstdc++6, libelf1, llvm-12-dev +Depends: libc6, libstdc++6, libelf1 # add 'libdebuginfod1' to Depends if built with libdebuginfod support Description: Shared Library for BPF Compiler Collection (BCC) Shared Library for BPF Compiler Collection to control BPF programs diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index a6afd969d941..04510c20f54e 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -23,7 +23,7 @@ COPY --from=builder /root/bcc/*.deb /root/bcc/ RUN \ apt-get update -y && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python-is-python3 binutils libelf1 kmod llvm-12-dev && \ + DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python-is-python3 binutils libelf1 kmod && \ pip3 install dnslib cachetools pyelftools && \ dpkg -i /root/bcc/*.deb && \ apt-get clean