Skip to content

Commit

Permalink
Adding Docker support (EnableSecurity#162)
Browse files Browse the repository at this point in the history
* Adding Dockerfile

* Adding Docker instructions
  • Loading branch information
Loqova authored Jul 15, 2022
1 parent 805665e commit 03b74c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM python:3
WORKDIR /usr/src/app
COPY . .
RUN python setup.py install
ENTRYPOINT [ "wafw00f" ]
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ The following should do the trick:
python setup.py install
```

It is also possible to run it within a docker container. Clone this repository first and build the Docker image using `docker build . -t wafw00f`.
Now you can run `docker run --rm -it wafw00f https://example.com`


## Final Words

__Questions?__ Pull up an [issue on GitHub Issue Tracker](https://github.com/enablesecurity/wafw00f/issues/new) or contact [me](mailto:[email protected]).
Expand Down

0 comments on commit 03b74c0

Please sign in to comment.