Created
May 2, 2017 02:26
-
-
Save kuropen/9a79f84176bb79d3db8fa7715ead832f to your computer and use it in GitHub Desktop.
Dockerfile for sqlmap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
RUN apk add --no-cache git | |
RUN mkdir -p /usr/local && cd /usr/local && git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git | |
VOLUME /root/.sqlmap | |
WORKDIR /usr/local/sqlmap | |
ENTRYPOINT /bin/sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment