Skip to content

Commit

Permalink
Adding docker build file
Browse files Browse the repository at this point in the history
  • Loading branch information
stavinski committed Apr 8, 2022
1 parent af0e644 commit 4c9d9ac
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

FROM python:3-alpine as build

LABEL org.opencontainers.image.authors="Michael Cromwell"

COPY requirements.txt /requirements.txt

RUN pip install -r /requirements.txt

COPY . /app

WORKDIR /app

ENTRYPOINT [ "python", "./showdown.py" ]
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,22 @@ Find SSL/TLS findings in network `103.71.205.0/24` and prompt for API key:
python3 showdown.py --plugins ssl net 103.71.205.0/24
~~~

## Docker

Showdown can be ran in a docker container, simply clone the repo and build the docker image:

~~~sh
git@github.com:stavinski/showdown.git
cd showdown
docker build -t showdown .
~~~

The docker image can then be ran by providing the arguments as usual:

~~~sh
docker run showdown --help
~~~

## Plugins

To create a new plugin:
Expand Down Expand Up @@ -139,3 +155,4 @@ class Plugin(AbstractPlugin):
- [ ] Plugin: SSH
- [ ] Plugin: GUI
- [ ] Plugin: Interesting Ports
- [ ] Docker support

0 comments on commit 4c9d9ac

Please sign in to comment.