blob: f586978b6bf2b7815dc32ebddcc80a25e9648c52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|