diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-10-16 21:58:32 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-10-16 22:00:10 +0200 |
commit | b7ec609c3ccacbfdd3e0e1fccbacfd3675140810 (patch) | |
tree | 4df166bbc6c64923a8245d92718924d687278462 /docker | |
parent | 9c397b77dc60a7fcafa92684e848e8ff00aa9134 (diff) | |
download | vyos-build-b7ec609c3ccacbfdd3e0e1fccbacfd3675140810.tar.gz vyos-build-b7ec609c3ccacbfdd3e0e1fccbacfd3675140810.zip |
Docker: T4284: use libbpf-dev from Debian repo over specific commit
In order to properly retrieve JSON information in the Smoketests for the new
QoS implementation we need a recent (>6.0) version of iproute2. This requires
the libbpf-dev package.
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 14613a87..02311fc8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2021 VyOS maintainers and contributors +# Copyright (C) 2018-2022 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # in order to easy exprort images built to "external" world @@ -344,9 +344,8 @@ RUN if dpkg-architecture -ii386 || dpkg-architecture -iamd64; then \ llvm \ libelf-dev \ libpcap-dev \ + libbpf-dev \ build-essential; \ - git clone https://github.com/libbpf/libbpf.git /tmp/libbpf && \ - cd /tmp/libbpf && git checkout b91f53ec5f1aba2 && cd src && make install; \ fi # Go required for validators and vyos-xe-guest-utilities |