diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-11-01 20:44:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-01 20:44:50 +0100 |
commit | ded4533d253aa51832a799d87443ace7b8c18bb4 (patch) | |
tree | a6c19dda653423bcf33a7d1a752f3fc00d0a0973 | |
parent | 64e77f12f66ce4031cf858fc1455e275b106d56e (diff) | |
parent | d88b5cb120c021ffc599e95d606663b2f0a028fb (diff) | |
download | vyos-build-ded4533d253aa51832a799d87443ace7b8c18bb4.tar.gz vyos-build-ded4533d253aa51832a799d87443ace7b8c18bb4.zip |
Merge pull request #272 from jestabro/standardize-op-mode-output
Docker: T4791: python3-humps now a build dependency for vyos-1x nosetest
-rw-r--r-- | docker/Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 02311fc8..71ba81ad 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -335,6 +335,11 @@ Run git clone https://github.com/dsoprea/PyInotify.git /tmp/inotify && \ python3 setup.py --command-packages=stdeb.command bdist_deb && \ sudo dpkg -i ./deb_dist/python3-inotify*.deb +Run git clone https://github.com/nficano/humps.git /tmp/humps && \ + cd /tmp/humps && git checkout v3.8.0 && \ + python3 setup.py --command-packages=stdeb.command bdist_deb; cp deb_dist/*.deb .. && \ + dpkg -i /tmp/python3-pyhumps_*_all.deb + # Packages needed for vyos-1x-xdp package, gcc-multilib is not available on # arm64 but required by XDP RUN if dpkg-architecture -ii386 || dpkg-architecture -iamd64; then \ |