summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/workloads/iperf/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/workloads/iperf/Dockerfile')
-rw-r--r--benchmarks/workloads/iperf/Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/benchmarks/workloads/iperf/Dockerfile b/benchmarks/workloads/iperf/Dockerfile
new file mode 100644
index 000000000..9704c506c
--- /dev/null
+++ b/benchmarks/workloads/iperf/Dockerfile
@@ -0,0 +1,14 @@
+FROM ubuntu:18.04
+
+RUN set -x \
+ && apt-get update \
+ && apt-get install -y \
+ iperf \
+ && rm -rf /var/lib/apt/lists/*
+
+# Accept a host parameter.
+ENV host ""
+ENV port 5001
+
+# Start as client if the host is provided.
+CMD ["sh", "-c", "test -z \"${host}\" && iperf -s || iperf -f K --realtime -c ${host} -p ${port}"]