mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
c4ff0cf58c
Signed-off-by: Jess Frazelle <me@jessfraz.com>
17 lines
374 B
Docker
17 lines
374 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
git \
|
|
python \
|
|
py-boto \
|
|
py-paramiko
|
|
|
|
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" ]
|