Skip to content

Commit

Permalink
ghz docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoborges committed Aug 30, 2020
1 parent 3557c33 commit 730bfdf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ghz-tool/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM ubuntu

RUN apt-get -q update \
&& apt-get -q -y install wget \
&& wget https://github.com/bojand/ghz/releases/download/v0.58.0/ghz-linux-x86_64.tar.gz \
&& tar zxf ghz-linux-x86_64.tar.gz -C /usr/bin \
&& apt-get -q -y remove wget \
&& apt-get -q -y autoremove \
&& rm -rf /var/cache/apt/archives

ENTRYPOINT [ "/usr/bin/ghz" ]

0 comments on commit 730bfdf

Please sign in to comment.