mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
14 lines
263 B
Docker
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" ]
|