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