Initial APThunter

This commit is contained in:
TKE
2021-04-08 22:59:28 +02:00
commit 0d0e540d71
2 changed files with 88 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM ubuntu
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y git python3-pip && rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/ahmedkhlief/APT-Hunter
RUN cd APT-Hunter ; pip3 install -r requirements.txt
RUN mkdir /output && touch /output/notmounted
ADD start.sh /root/start.sh
CMD ["/bin/bash","/root/start.sh"]