-
-
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.
- Loading branch information
1 parent
10a5020
commit 8abbdc7
Showing
3 changed files
with
28 additions
and
4 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,7 +9,7 @@ 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 \ | ||
|
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" ] |