-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from peter-evans/update-vegeta
Update Vegeta to version 12.6.0
- Loading branch information
Showing
3 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.9 | ||
FROM alpine:3.10.1 | ||
|
||
LABEL \ | ||
maintainer="Peter Evans <[email protected]>" \ | ||
|
@@ -9,13 +9,13 @@ LABEL \ | |
org.opencontainers.image.vendor="https://peterevans.dev" \ | ||
org.opencontainers.image.licenses="MIT" | ||
|
||
ENV VEGETA_VERSION 12.5.1 | ||
ENV VEGETA_VERSION 12.6.0 | ||
|
||
RUN set -ex \ | ||
&& apk add --no-cache ca-certificates \ | ||
&& apk add --no-cache --virtual .build-deps \ | ||
openssl \ | ||
&& wget -q "https://github.com/tsenart/vegeta/releases/download/cli/v$VEGETA_VERSION/vegeta-$VEGETA_VERSION-linux-amd64.tar.gz" -O /tmp/vegeta.tar.gz \ | ||
&& wget -q "https://github.com/tsenart/vegeta/releases/download/v$VEGETA_VERSION/vegeta-$VEGETA_VERSION-linux-amd64.tar.gz" -O /tmp/vegeta.tar.gz \ | ||
&& cd bin \ | ||
&& tar xzf /tmp/vegeta.tar.gz \ | ||
&& rm /tmp/vegeta.tar.gz \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
FROM alpine:3.9 | ||
|
||
LABEL \ | ||
maintainer="Peter Evans <[email protected]>" \ | ||
org.opencontainers.image.title="vegeta" \ | ||
org.opencontainers.image.description="Docker image for the Vegeta HTTP load testing tool." \ | ||
org.opencontainers.image.authors="Peter Evans <[email protected]>" \ | ||
org.opencontainers.image.url="https://github.com/peter-evans/vegeta-docker" \ | ||
org.opencontainers.image.vendor="https://peterevans.dev" \ | ||
org.opencontainers.image.licenses="MIT" | ||
|
||
ENV VEGETA_VERSION 12.5.1 | ||
|
||
RUN set -ex \ | ||
&& apk add --no-cache ca-certificates \ | ||
&& apk add --no-cache --virtual .build-deps \ | ||
openssl \ | ||
&& wget -q "https://github.com/tsenart/vegeta/releases/download/cli/v$VEGETA_VERSION/vegeta-$VEGETA_VERSION-linux-amd64.tar.gz" -O /tmp/vegeta.tar.gz \ | ||
&& cd bin \ | ||
&& tar xzf /tmp/vegeta.tar.gz \ | ||
&& rm /tmp/vegeta.tar.gz \ | ||
&& apk del .build-deps | ||
|
||
CMD [ "/bin/vegeta", "-help" ] |