summaryrefslogtreecommitdiffhomepage
path: root/images/benchmarks/fio/Dockerfile
diff options
context:
space:
mode:
authorZach Koopmans <zkoopmans@google.com>2020-07-29 10:05:46 -0700
committergVisor bot <gvisor-bot@google.com>2020-07-29 10:15:53 -0700
commit1715896fc81fce0302e790186302d7460838a918 (patch)
tree6523389e79ef4983c2e384896ab404b76ff960e9 /images/benchmarks/fio/Dockerfile
parent6b4e11ab5074d41044e63337973ac2438ce2278e (diff)
Port fio benchmark
PiperOrigin-RevId: 323810654
Diffstat (limited to 'images/benchmarks/fio/Dockerfile')
-rw-r--r--images/benchmarks/fio/Dockerfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/images/benchmarks/fio/Dockerfile b/images/benchmarks/fio/Dockerfile
new file mode 100644
index 000000000..9531df7fa
--- /dev/null
+++ b/images/benchmarks/fio/Dockerfile
@@ -0,0 +1,7 @@
+FROM ubuntu:18.04
+
+RUN set -x \
+ && apt-get update \
+ && apt-get install -y \
+ fio \
+ && rm -rf /var/lib/apt/lists/*