medved/docker/core/Dockerfile
Good Evening d782c2eb70 pew pew
2018-04-03 01:41:10 +03:00

19 lines
510 B
Docker

FROM medved_base:latest
RUN pacman -S --noconfirm --needed git libpcap linux-headers clang tor
RUN git clone https://github.com/robertdavidgraham/masscan && \
cd masscan && \
make -j && \
mv bin/masscan /bin/masscan
RUN wget -N http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz && gunzip GeoLiteCity.dat.gz
RUN mkdir -p /usr/share/GeoIP/ && mv GeoLiteCity.dat /usr/share/GeoIP/GeoIPCity.dat
ADD files/torrc /etc/tor/torrc
ADD files/run.sh /tmp/run.sh
CMD ["/tmp/run.sh"]