forked from 1N3/BlackWidow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added minimal alpine:edge + python2 Dockerfile
Updated README.md with Docker instructions
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM alpine:edge | ||
|
||
|
||
RUN apk --update add --no-cache python2 py2-requests py2-pip py2-lxml py2-requests openssl ca-certificates | ||
RUN apk --update add --virtual build-dependencies python2-dev build-base wget git \ | ||
&& git clone https://github.com/1N3/BlackWidow.git | ||
WORKDIR BlackWidow | ||
|
||
RUN pip2 install -r requirements.txt | ||
ENTRYPOINT ["python2", "blackwidow"] | ||
CMD ["--help"] |
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