1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-02-26 22:34:02 +01:00
dockerfiles/cli53/Dockerfile
Jess Frazelle 3c1634b3d0
fix py2
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-01-10 16:14:50 -08:00

10 lines
131 B
Docker

FROM alpine:latest
RUN apk --no-cache add \
ca-certificates \
python \
py2-pip \
&& pip install cli53
ENTRYPOINT [ "cli53" ]