gns3-docker-appliances/host/Dockerfile

21 lines
382 B
Docker
Raw Permalink 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 \
2024-09-26 14:16:02 +00:00
dnsutils \
2024-09-17 10:02:12 +00:00
tcpdump \
2024-09-20 08:14:26 +00:00
traceroute \
2024-09-17 10:02:12 +00:00
&& rm -rf /var/lib/apt/lists/*
2024-09-26 12:53:36 +00:00
COPY start.sh /start.sh
EXPOSE 80
CMD ["/bin/sh", "/start.sh"]