1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00
Files
hackingtool/Dockerfile

22 lines
455 B
Docker
Raw Normal View History

2022-12-02 22:16:16 +01:00
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 boxes flask lolcat requests -r requirements.txt;
2022-12-02 22:16:16 +01:00
RUN true && \
echo "/root/hackingtool/" > /home/hackingtoolpath.txt;
EXPOSE 1-65535
ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"]