refactor to alpine (#227)

* refactor to alpine

* add ca-certificates
This commit is contained in:
Benjamin 2017-01-22 23:12:41 +01:00 committed by Jess Frazelle
parent 3c55eb11b1
commit acbffb5a6b

View File

@ -1,10 +1,4 @@
FROM debian:sid
FROM alpine:3.5
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
wrk \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "wrk" ]
RUN apk add --no-cache wrk ca-certificates
ENTRYPOINT ["wrk"]