gns3-docker-appliances/host/Dockerfile

18 lines
343 B
Docker
Raw Normal View History

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