From a697ba1cc34a8515463b964942c5439640d10dd4 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Mon, 2 Nov 2015 15:00:05 -0800 Subject: [PATCH] To update route53 DNS records with style And by "style" I mean "scripts" of course. --- cli53/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cli53/Dockerfile diff --git a/cli53/Dockerfile b/cli53/Dockerfile new file mode 100644 index 0000000..5a38fb7 --- /dev/null +++ b/cli53/Dockerfile @@ -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" ]