-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jess Frazelle <[email protected]>
- Loading branch information
Showing
3 changed files
with
10 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" ] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.