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, 0 insertions, 14 deletions
diff --git a/benchmarks/workloads/iperf/Dockerfile b/benchmarks/workloads/iperf/Dockerfile
deleted file mode 100644
index 9704c506c..000000000
--- a/benchmarks/workloads/iperf/Dockerfile
+++ /dev/null
@@ -1,14 +0,0 @@
-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}"]