Added alpine-based Dockerfile

This commit is contained in:
ktx 2017-11-27 22:20:26 +01:00 committed by GitHub
parent f60727a891
commit 61e74df753
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM python:2-alpine
RUN apk add --update git
RUN pip install bs4
WORKDIR /root
RUN git clone https://github.com/sqlmapproject/sqlmap.git sqlmap
RUN chmod +x /root/sqlmap/sqlmap.py
RUN ln -s /root/sqlmap/sqlmap.py /usr/bin/sqlmap
ENTRYPOINT ["sqlmap"]
CMD ["-h"]