mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
11 lines
163 B
Docker
11 lines
163 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk update && apk add \
|
||
|
ca-certificates \
|
||
|
python \
|
||
|
py-pip \
|
||
|
&& rm -rf /var/cache/apk/* \
|
||
|
&& pip install cli53
|
||
|
|
||
|
ENTRYPOINT [ "cli53" ]
|