summaryrefslogtreecommitdiffhomepage
path: root/images/benchmarks/hey/Dockerfile
diff options
context:
space:
mode:
authorZach Koopmans <zkoopmans@google.com>2020-07-29 10:03:57 -0700
committergVisor bot <gvisor-bot@google.com>2020-07-29 10:06:38 -0700
commit6b4e11ab5074d41044e63337973ac2438ce2278e (patch)
tree0ecb8d935eb20afd56c4b0e02624aa1d9d381dcd /images/benchmarks/hey/Dockerfile
parenta6b4538ae0b0020b14c8292d98e2549719a49e4c (diff)
Port node benchmark.
PiperOrigin-RevId: 323810235
Diffstat (limited to 'images/benchmarks/hey/Dockerfile')
-rw-r--r--images/benchmarks/hey/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/images/benchmarks/hey/Dockerfile b/images/benchmarks/hey/Dockerfile
new file mode 100644
index 000000000..f586978b6
--- /dev/null
+++ b/images/benchmarks/hey/Dockerfile
@@ -0,0 +1,12 @@
+FROM ubuntu:18.04
+
+RUN set -x \
+ && apt-get update \
+ && apt-get install -y \
+ wget \
+ && rm -rf /var/lib/apt/lists/*
+
+RUN wget https://storage.googleapis.com/hey-release/hey_linux_amd64 \
+ && chmod 777 hey_linux_amd64 \
+ && cp hey_linux_amd64 /bin/hey \
+ && rm hey_linux_amd64