From 52572390496c034790a5c5af554b6c8642759ffc Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Wed, 5 Aug 2015 00:36:17 -0700 Subject: [PATCH] beeswithmachineguns Signed-off-by: Jessica Frazelle --- beeswithmachineguns/Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 beeswithmachineguns/Dockerfile diff --git a/beeswithmachineguns/Dockerfile b/beeswithmachineguns/Dockerfile new file mode 100644 index 0000000..025c645 --- /dev/null +++ b/beeswithmachineguns/Dockerfile @@ -0,0 +1,13 @@ +FROM alpine:latest +MAINTAINER Jessica Frazelle + +RUN apk update && apk add \ + ca-certificates \ + python \ + py-boto \ + py-paramiko \ + py-pip \ + && rm -rf /var/cache/apk/* \ + && pip install beeswithmachineguns + +ENTRYPOINT [ "beeswithmachineguns" ]