mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 19:55:19 +00:00
24 lines
482 B
Docker
24 lines
482 B
Docker
|
FROM kalilinux/kali-rolling
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y git python3-pip figlet sudo;
|
||
|
|
||
|
#Install packages dependencies
|
||
|
RUN true && \
|
||
|
apt-get install -y boxes php curl xdotool wget;
|
||
|
|
||
|
WORKDIR /root/hackingtool
|
||
|
COPY . .
|
||
|
|
||
|
RUN true && \
|
||
|
pip3 install -r requirement.txt;
|
||
|
|
||
|
RUN true && \
|
||
|
pip3 install lolcat boxes flask requests;
|
||
|
|
||
|
RUN true && \
|
||
|
echo "/root/hackingtool/" > /home/hackingtoolpath.txt;
|
||
|
|
||
|
EXPOSE 1-65535
|
||
|
|
||
|
ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"]
|