dockerfiles/beeswithmachineguns/Dockerfile
Jessica Frazelle 5257239049 beeswithmachineguns
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
2015-08-05 00:36:17 -07:00

14 lines
263 B
Docker

FROM alpine:latest
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apk update && apk add \
ca-certificates \
python \
py-boto \
py-paramiko \
py-pip \
&& rm -rf /var/cache/apk/* \
&& pip install beeswithmachineguns
ENTRYPOINT [ "beeswithmachineguns" ]