dockerfiles/cli53/Dockerfile
Jerome Petazzoni a697ba1cc3 To update route53 DNS records with style
And by "style" I mean "scripts" of course.
2015-11-02 15:00:05 -08:00

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" ]