Skip to content
This repository was archived by the owner on Oct 17, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:3.8.0-alpine3.10

RUN mkdir /spraying && \
apk add cmake make libtool gcc musl-dev libffi-dev g++ libxml2 libxml2-dev libxslt libxslt-dev openssl openssl-dev

COPY . /spraying

RUN pip install -r /spraying/requirements.txt
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,17 @@ Reads names from `names.txt`, `--target` dynamically grabs the internal domain n
```bash
./spindrift.py names.txt --target contoso.com
```

## Docker

Build the Docker container

```bash
docker build -t sprayingtoolkit .
```

Run the docker container with a specific tool

```bash
docker run -t sprayingtoolkt /spraying/<tool> <args>
```