Skip to content

Commit

Permalink
fix bees
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Sep 1, 2017
1 parent 567722f commit 8936dc3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 43 deletions.
13 changes: 10 additions & 3 deletions beeswithmachineguns/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,21 @@ LABEL maintainer "Jessie Frazelle <[email protected]>"

RUN apk --no-cache add \
ca-certificates \
git \
python \
py-boto \
py-paramiko

RUN git clone --depth 1 https://github.com/newsapps/beeswithmachineguns /usr/src/beeswithmachineguns \
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
&& rm -rf /usr/src/beeswithmachineguns \
&& apk del $buildDeps

ENTRYPOINT [ "bees" ]
35 changes: 0 additions & 35 deletions golang-softhsm2/Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions golang-softhsm2/softhsm2.conf

This file was deleted.

0 comments on commit 8936dc3

Please sign in to comment.