File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed
Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,10 @@ There are some various other libraries required that a normal Python installatio
3939```
4040python setup.py install
4141```
42-
42+ Alternatively you can build a Docker image by changing to the docker directory and entering:
43+ ```
44+ docker build -t nosqlmap .
45+ ```
4346## Usage Instructions
4447Start with
4548```
Original file line number Diff line number Diff line change 1+ FROM ubuntu:latest
2+
3+ RUN apt-get update && apt-get install -y python python-pip git mongodb
4+
5+ RUN git clone https://github.com/codingo/NoSQLMap.git /root/NoSqlMap
6+
7+ WORKDIR /root/NoSqlMap
8+
9+ RUN python setup.py install
10+
11+ COPY entrypoint.sh /tmp/entrypoint.sh
12+
13+ RUN chmod +x /tmp/entrypoint.sh
14+
15+ ENTRYPOINT ["/tmp/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ exec python nosqlmap.py
You can’t perform that action at this time.
0 commit comments