FROM kalilinux/kali-rolling

# Install packet-capture and network recon tools needed for Lab 2.3 steps 4 and 5
RUN apt-get update && apt-get install -y --no-install-recommends \
    tcpdump \
    nmap \
    iputils-ping \
    iproute2 \
    curl \
    net-tools \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /captures

CMD ["bash"]
