From a3da4aee41be1a5df0c3486a95baa9959419f516 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Wed, 5 Aug 2015 01:14:32 -0700 Subject: [PATCH] update entrypoint Signed-off-by: Jessica Frazelle --- beeswithmachineguns/Dockerfile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/beeswithmachineguns/Dockerfile b/beeswithmachineguns/Dockerfile index 025c645..d62e58f 100644 --- a/beeswithmachineguns/Dockerfile +++ b/beeswithmachineguns/Dockerfile @@ -3,11 +3,17 @@ MAINTAINER Jessica Frazelle RUN apk update && apk add \ ca-certificates \ + git \ python \ py-boto \ py-paramiko \ - py-pip \ - && rm -rf /var/cache/apk/* \ - && pip install beeswithmachineguns + && rm -rf /var/cache/apk/* -ENTRYPOINT [ "beeswithmachineguns" ] +RUN git clone https://github.com/newsapps/beeswithmachineguns /usr/src/beeswithmachineguns \ + && cd /usr/src/beeswithmachineguns \ + && git fetch --tags \ + && git checkout 0.1.4 \ + && python setup.py install \ + && rm -rf /usr/src/beeswithmachineguns + +ENTRYPOINT [ "bees" ]