mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-18 12:36:25 +00:00
Upgrade Ubuntu Docker base image to 24.04 LTS (Noble)
This commit is contained in:
parent
87cd5e763c
commit
49e2f9879c
@ -17,7 +17,7 @@ ostinato-wireshark ostinato-wireshark
|
||||
openvswitch openvswitch
|
||||
ovs-snmp ovs-snmp --platform=linux/arm64
|
||||
pyats pyats
|
||||
ubuntu:focal ubuntu
|
||||
ubuntu:noble ubuntu
|
||||
|
||||
# Tests
|
||||
xeyes xeyes
|
||||
|
@ -1,10 +1,22 @@
|
||||
# docker base image for basic networking tools
|
||||
# Ubuntu Docker base image with basic networking tools installed
|
||||
|
||||
FROM ubuntu:focal
|
||||
FROM ubuntu:noble
|
||||
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y --no-install-recommends install \
|
||||
net-tools tcpdump telnet traceroute curl iperf3 knot-host openssh-client mtr-tiny socat nano vim-tiny \
|
||||
nmap iputils-ping \
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt update && apt -y --no-install-recommends install \
|
||||
net-tools \
|
||||
iproute2 \
|
||||
tcpdump \
|
||||
telnet \
|
||||
traceroute \
|
||||
curl \
|
||||
iperf3 \
|
||||
knot-host \
|
||||
openssh-client \
|
||||
mtr-tiny \
|
||||
socat \
|
||||
nano \
|
||||
nmap \
|
||||
iputils-ping \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
VOLUME [ "/root" ]
|
||||
|
@ -21,6 +21,6 @@ The /root folder is mounted by default
|
||||
First the base image has to be created:
|
||||
|
||||
```
|
||||
docker build -t gns3/ubuntu:focal .
|
||||
docker push gns3/ubuntu:focal (optional)
|
||||
docker build -t gns3/ubuntu:noble .
|
||||
docker push gns3/ubuntu:nobel (optional)
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user