mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-07 04:29:17 +01:00
11 lines
192 B
Docker
11 lines
192 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
python \
|
|
py-pip \
|
|
&& pip install httpie httpie-unixsocket
|
|
|
|
ENTRYPOINT [ "http" ]
|