Skip to content

Commit 060d86a

Browse files
author
İsmail Taşdelen
authored
Create .Dockerfile
1 parent 77a9d64 commit 060d86a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.Dockerfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
FROM alpine
2+
LABEL MAINTAINER [email protected]
3+
4+
RUN apk add --no-cache python && \
5+
python -m ensurepip && \
6+
rm -r /usr/lib/python*/ensurepip && \
7+
pip install --upgrade pip setuptools && \
8+
rm -r /root/.cache
9+
10+
11+
RUN apk add git
12+
RUN git clone https://github.com/pyhackertarget/hackertarget.git /tmp/hackertarget
13+
14+
WORKDIR /tmp/shodansploit
15+
RUN pip install requests
16+
17+
ENTRYPOINT ["python", "shodansploit.py"]

0 commit comments

Comments
 (0)