mirror of
https://github.com/ChronosX88/medved.git
synced 2024-11-22 14:42:19 +00:00
15 lines
313 B
Docker
15 lines
313 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
|
||
|
|
||
|
ADD files/torrc /etc/tor/torrc
|
||
|
|
||
|
ADD files/run.sh /tmp/run.sh
|
||
|
|
||
|
CMD ["/tmp/run.sh"]
|