mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 11:53:01 +00:00
12 lines
447 B
Docker
12 lines
447 B
Docker
FROM kalilinux/kali-rolling:latest
|
|
RUN apt-get update && \
|
|
apt-get install -y git python3-pip figlet sudo && \
|
|
apt-get install -y boxes php curl xdotool wget
|
|
|
|
WORKDIR /root/hackingtool
|
|
COPY requirements.txt ./
|
|
RUN pip3 install --no-cache-dir boxes flask lolcat requests -r requirements.txt
|
|
COPY . .
|
|
RUN true && echo "/root/hackingtool/" > /home/hackingtoolpath.txt;
|
|
EXPOSE 1-65535
|
|
ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"] |