From 3368e857c2d656d85695883d0355a75a34aae614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Trigo=20Soares?= Date: Mon, 31 Jul 2023 18:12:49 +0100 Subject: [PATCH] added hey load balancing tool --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 443e112..29425b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,4 +63,8 @@ RUN curl -SsL https://packages.httpie.io/deb/KEY.gpg | gpg --dearmor -o /usr/sha apt-get update && \ apt-get install -y httpie +# for hey +RUN curl -Lv -o /usr/bin/hey https://hey-release.s3.us-east-2.amazonaws.com/hey_linux_amd64 && \ + chmod a+x /usr/bin/hey + ENTRYPOINT [ "/bin/bash" ]