update entrypoint

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-08-05 01:14:32 -07:00
parent 2cb39c1938
commit a4042f8132

View File

@ -3,11 +3,15 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
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 \
&& python setup.py install \
&& rm -rf /usr/src/beeswithmachineguns
ENTRYPOINT [ "bees" ]