17 lines
322 B
Docker
Raw Normal View History

2024-09-17 11:43:38 +02:00
FROM ubuntu:24.04
RUN apt-get update && \
2024-09-17 12:02:12 +02:00
apt-get install -y \
nmap \
vim \
nano \
curl \
net-tools \
iproute2 \
iperf3 \
socat \
iputils-ping \
tcpdump \
&& rm -rf /var/lib/apt/lists/*
CMD [ "sh", "-c", "cd; exec bash -i" ]