Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2017-02-11 14:34:22 -08:00
parent e0e1cdc8fa
commit d5b8008402
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.4
FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com>
ENV LANG=en_US.UTF-8

View File

@ -1,4 +1,8 @@
FROM alpine:3.5
FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apk add --no-cache wrk ca-certificates
ENTRYPOINT ["wrk"]
RUN apk --no-cache add \
ca-certificates \
wrk
CMD [ "wrk" ]