Add Dockerfile for the iperf3 container image
When iperf3 background process will be run in the POD by Tobiko tests, it needs to be newer iperf3 then available in Centos 9 stream currently (Tobiko requires iperf3 with support for the "--json-stream" option which was introduced in iperf 3.17). Because of that this patch adds simply Dockerfile to build iperf3 container. It is based on Centos 10 stream and has iperf3 in the new enough version. Related: #TOBIKO-131 Change-Id: Ie7b67bad059d7d5252270bab3cf148103dff96e9
This commit is contained in:
parent
ca0f45276a
commit
5802daab8c
7
tools/iperf3_image/Dockerfile
Normal file
7
tools/iperf3_image/Dockerfile
Normal file
@ -0,0 +1,7 @@
|
||||
FROM quay.io/centos/centos:stream10
|
||||
|
||||
ENV INSTALL_PACKAGES="dnf install -y"
|
||||
|
||||
RUN ${INSTALL_PACKAGES} iperf3
|
||||
|
||||
ENTRYPOINT ["iperf3"]
|
Loading…
x
Reference in New Issue
Block a user