2015-08-05 09:36:17 +02:00
|
|
|
FROM alpine:latest
|
|
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
|
2016-06-06 05:40:20 +02:00
|
|
|
RUN apk --no-cache add \
|
2015-08-05 09:36:17 +02:00
|
|
|
ca-certificates \
|
2015-08-05 10:14:32 +02:00
|
|
|
git \
|
2015-08-05 09:36:17 +02:00
|
|
|
python \
|
|
|
|
py-boto \
|
2016-06-06 05:40:20 +02:00
|
|
|
py-paramiko
|
2015-08-05 09:36:17 +02:00
|
|
|
|
2015-08-05 10:14:32 +02:00
|
|
|
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" ]
|