mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-19 20:40:05 +00:00
28 lines
760 B
Docker
28 lines
760 B
Docker
FROM bats/bats:v1.1.0
|
|
|
|
RUN addgroup -S app \
|
|
&& adduser -S -g app app \
|
|
&& apk --no-cache add ca-certificates curl jq
|
|
|
|
WORKDIR /home/app
|
|
|
|
RUN curl -sSLo hey "https://storage.googleapis.com/jblabs/dist/hey_linux_v0.1.2" && \
|
|
chmod +x hey && mv hey /usr/local/bin/hey
|
|
|
|
RUN curl -sSL "https://get.helm.sh/helm-v2.12.3-linux-amd64.tar.gz" | tar xvz && \
|
|
chmod +x linux-amd64/helm && mv linux-amd64/helm /usr/local/bin/helm && \
|
|
rm -rf linux-amd64
|
|
|
|
RUN curl -sSL "https://github.com/bojand/ghz/releases/download/v0.39.0/ghz_0.39.0_Linux_x86_64.tar.gz" | tar xz -C /tmp && \
|
|
mv /tmp/ghz /usr/local/bin && chmod +x /usr/local/bin/ghz && rm -rf /tmp/ghz-web
|
|
|
|
RUN ls /tmp
|
|
|
|
COPY ./bin/loadtester .
|
|
|
|
RUN chown -R app:app ./
|
|
|
|
USER app
|
|
|
|
ENTRYPOINT ["./loadtester"]
|