Skip to content

Instantly share code, notes, and snippets.

@kuropen
Created May 2, 2017 02:26
Show Gist options
  • Save kuropen/9a79f84176bb79d3db8fa7715ead832f to your computer and use it in GitHub Desktop.
Save kuropen/9a79f84176bb79d3db8fa7715ead832f to your computer and use it in GitHub Desktop.
Dockerfile for sqlmap
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