mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-07 20:49:11 +01:00
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" ]
|