Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-08-05 02:55:28 -07:00
parent a4042f8132
commit 7cb4e1c425

10
wrk/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM debian:sid
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
wrk \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "wrk" ]