diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-08-04 16:48:40 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-04 16:51:04 -0700 |
commit | be7079578e0907fd3f35f91e9716246c179e17e9 (patch) | |
tree | 7e9f5f77f97f5350a4e5e75988cf7ca042f43c1d /images | |
parent | 0ba702bd6ca36b959d153976c7bbf7c914f4f8c9 (diff) |
Port sysbench benchmark.
PiperOrigin-RevId: 324918229
Diffstat (limited to 'images')
-rw-r--r-- | images/benchmarks/sysbench/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/images/benchmarks/sysbench/Dockerfile b/images/benchmarks/sysbench/Dockerfile new file mode 100644 index 000000000..55e865f43 --- /dev/null +++ b/images/benchmarks/sysbench/Dockerfile @@ -0,0 +1,7 @@ +FROM ubuntu:18.04 + +RUN set -x \ + && apt-get update \ + && apt-get install -y \ + sysbench \ + && rm -rf /var/lib/apt/lists/* |