mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-08 04:59:18 +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" ]
|