FROM debian:stable

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
    apt-get install -y sshpass openssh-client nmap dirb && \
    apt-get clean

# Scripts d'attaque
COPY attacker.sh /usr/local/bin/attacker.sh
RUN chmod +x /usr/local/bin/attacker.sh

CMD ["/usr/local/bin/attacker.sh"]
