diff options
author | David Lamparter <equinox@diac24.net> | 2020-07-15 18:41:07 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-07-15 18:50:12 +0200 |
commit | ba5410e32f689e26b14b5eb9b6e6e01bcb66a2d1 (patch) | |
tree | b2386871af2c69ec4dd696cbfd8cc3cc8629dcd0 /tests/topotests/Dockerfile | |
parent | topotests: unshittify backtraces (diff) | |
download | frr-ba5410e32f689e26b14b5eb9b6e6e01bcb66a2d1.tar.xz frr-ba5410e32f689e26b14b5eb9b6e6e01bcb66a2d1.zip |
topotests: update Dockerfile
... python3 is non-optional now.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to '')
-rw-r--r-- | tests/topotests/Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/topotests/Dockerfile b/tests/topotests/Dockerfile index cdd0ae2f6..b7c629822 100644 --- a/tests/topotests/Dockerfile +++ b/tests/topotests/Dockerfile @@ -19,6 +19,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \ libjson-c-dev \ libpcre3-dev \ libpython-dev \ + libpython3-dev \ libreadline-dev \ libc-ares-dev \ libcap-dev \ @@ -26,7 +27,10 @@ RUN export DEBIAN_FRONTEND=noninteractive \ mininet \ pkg-config \ python-pip \ - python-sphinx \ + python3 \ + python3-dev \ + python3-sphinx \ + python3-pytest \ rsync \ strace \ tcpdump \ |