mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
8936dc3533
Signed-off-by: Jess Frazelle <acidburn@google.com>
24 lines
517 B
Docker
24 lines
517 B
Docker
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
python \
|
|
py-boto \
|
|
py-paramiko
|
|
|
|
RUN buildDeps=' \
|
|
build-base \
|
|
git \
|
|
python-dev \
|
|
' \
|
|
set -x \
|
|
&& apk --no-cache add $buildDeps \
|
|
&& git clone --depth 1 https://github.com/newsapps/beeswithmachineguns /usr/src/beeswithmachineguns \
|
|
&& cd /usr/src/beeswithmachineguns \
|
|
&& python setup.py install \
|
|
&& rm -rf /usr/src/beeswithmachineguns \
|
|
&& apk del $buildDeps
|
|
|
|
ENTRYPOINT [ "bees" ]
|