mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-08 13:09:21 +01:00
9 lines
128 B
Docker
9 lines
128 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
wrk
|
|
|
|
CMD [ "wrk" ]
|