Merge pull request #77 from jpetazzo/cli53

To update route53 DNS records with style
This commit is contained in:
Jess Frazelle 2015-11-03 10:48:54 -08:00
commit b263469b9e

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