2023-09-01 07:02:42 +00:00
|
|
|
FROM kalilinux/kali-rolling:latest
|
2022-12-02 21:16:16 +00:00
|
|
|
RUN apt-get update && \
|
2023-09-01 07:02:42 +00:00
|
|
|
apt-get install -y git python3-pip figlet sudo && \
|
|
|
|
apt-get install -y boxes php curl xdotool wget
|
2022-12-02 21:16:16 +00:00
|
|
|
|
|
|
|
WORKDIR /root/hackingtool
|
2023-09-01 07:02:42 +00:00
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN pip3 install --no-cache-dir boxes flask lolcat requests -r requirements.txt
|
2022-12-02 21:16:16 +00:00
|
|
|
COPY . .
|
2023-09-01 07:02:42 +00:00
|
|
|
RUN true && echo "/root/hackingtool/" > /home/hackingtoolpath.txt;
|
2022-12-02 21:16:16 +00:00
|
|
|
EXPOSE 1-65535
|
2023-09-01 07:02:42 +00:00
|
|
|
ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"]
|