2015-08-05 09:36:17 +02:00
|
|
|
FROM alpine:latest
|
2016-09-20 00:25:05 +02:00
|
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
2015-08-05 09:36:17 +02:00
|
|
|
|
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
|
|
|
|
2016-12-28 01:34:48 +01:00
|
|
|
RUN git clone --depth 1 https://github.com/newsapps/beeswithmachineguns /usr/src/beeswithmachineguns \
|
2015-08-05 10:14:32 +02:00
|
|
|
&& cd /usr/src/beeswithmachineguns \
|
|
|
|
&& python setup.py install \
|
|
|
|
&& rm -rf /usr/src/beeswithmachineguns
|
|
|
|
|
|
|
|
ENTRYPOINT [ "bees" ]
|