mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
a697ba1cc3
And by "style" I mean "scripts" of course.
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" ]
|