dockerfiles/httpie/Dockerfile
Jess Frazelle 3c1634b3d0
fix py2
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-01-10 16:14:50 -08:00

11 lines
193 B
Docker

FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apk --no-cache add \
ca-certificates \
python \
py2-pip \
&& pip install httpie httpie-unixsocket
ENTRYPOINT [ "http" ]