summaryrefslogtreecommitdiffhomepage
path: root/images/benchmarks/hey/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'images/benchmarks/hey/Dockerfile')
-rw-r--r--images/benchmarks/hey/Dockerfile13
1 files changed, 0 insertions, 13 deletions
diff --git a/images/benchmarks/hey/Dockerfile b/images/benchmarks/hey/Dockerfile
deleted file mode 100644
index 4b6a0f849..000000000
--- a/images/benchmarks/hey/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM golang:1.15 as build
-RUN go get github.com/rakyll/hey
-WORKDIR /go/src/github.com/rakyll/hey
-RUN go mod download
-RUN CGO_ENABLED=0 go build -o /hey hey.go
-
-FROM ubuntu:18.04
-RUN set -x \
- && apt-get update \
- && apt-get install -y \
- wget \
- && rm -rf /var/lib/apt/lists/*
-COPY --from=build /hey /bin/hey