dockerfiles/httpie/Dockerfile

11 lines
194 B
Docker
Raw Normal View History

FROM alpine:latest
2014-10-09 19:36:23 +02:00
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apk --no-cache add \
ca-certificates \
python \
py-pip \
&& pip install httpie httpie-unixsocket
2014-10-09 19:36:23 +02:00
ENTRYPOINT [ "http" ]