mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
3c1634b3d0
Signed-off-by: Jess Frazelle <acidburn@google.com>
10 lines
131 B
Docker
10 lines
131 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
python \
|
|
py2-pip \
|
|
&& pip install cli53
|
|
|
|
ENTRYPOINT [ "cli53" ]
|