| Dockerfile - docker-images - Various docker image builds I have created over th… | |
| git clone git://jay.scot/docker-images | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| Dockerfile (777B) | |
| --- | |
| 1 FROM debian:latest | |
| 2 MAINTAINER Jay scott | |
| 3 | |
| 4 WORKDIR /root | |
| 5 RUN apt-get update && apt-get -y install \ | |
| 6 bzip2 \ | |
| 7 git-core \ | |
| 8 python \ | |
| 9 sqlite3 \ | |
| 10 tar \ | |
| 11 wget \ | |
| 12 && rm -rf /var/lib/apt/lists/* | |
| 13 | |
| 14 # Installing phantomJS | |
| 15 WORKDIR /root | |
| 16 RUN wget -q https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.… | |
| 17 && tar -xvjf phantomjs-2.1.1-linux-x86_64.tar.bz2 \ | |
| 18 && mv /root/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/bin/phan… | |
| 19 && git clone https://github.com/segment-srl/htcap.git \ | |
| 20 && ln -s /usr/share/htcap/htcap.py /usr/local/bin/htcap \ | |
| 21 && ln -s /usr/share/htcap/scripts/htmlreport.py /usr/local/bin/htcap… | |
| 22 && ln -s /usr/share/htcap/scripts/quickscan.sh /usr/local/bin/htcapq… | |
| 23 | |
| 24 ENTRYPOINT ["htcap/htcap.py"] |