To update route53 DNS records with style

And by "style" I mean "scripts" of course.
This commit is contained in:
Jerome Petazzoni 2015-11-02 15:00:05 -08:00
parent 622a01489c
commit a697ba1cc3

10
cli53/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM alpine:latest
RUN apk update && apk add \
ca-certificates \
python \
py-pip \
&& rm -rf /var/cache/apk/* \
&& pip install cli53
ENTRYPOINT [ "cli53" ]