mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
a4042f8132
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
18 lines
409 B
Docker
18 lines
409 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
RUN apk update && apk add \
|
|
ca-certificates \
|
|
git \
|
|
python \
|
|
py-boto \
|
|
py-paramiko \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
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" ]
|