dockerfiles/httpie/Dockerfile

14 lines
255 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 update && apk add \
ca-certificates \
python \
python-dev \
py-pip \
build-base \
&& rm -rf /var/cache/apk/* \
&& pip install httpie httpie-unixsocket
2014-10-09 19:36:23 +02:00
ENTRYPOINT [ "http" ]