spf-dkim-dmarc-demo/attacker/Dockerfile

29 lines
522 B
Docker
Raw Normal View History

FROM alpine:latest
WORKDIR /home/attaquant
RUN adduser -D attaquant
RUN apk add \
bash \
bind-tools \
curl \
ncurses-terminfo-base \
opendkim-libs \
opendkim-utils \
perl \
python3 \
py3-dnspython \
py3-pip \
py3-rich
RUN pip install dkimpy
# TODO mettre un bashrc qui positionne un prompt qui montre bien quon est
# en train dêtre méchant
USER attaquant
ENTRYPOINT ["/bin/bash"]
COPY --chown=attaquant scripts /home/attaquant/scripts