File tree 3 files changed +20
-8
lines changed
3 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ostinato-wireshark ostinato-wireshark
17
17
openvswitch openvswitch
18
18
ovs-snmp ovs-snmp --platform=linux/arm64
19
19
pyats pyats
20
- ubuntu:focal ubuntu
20
+ ubuntu:noble ubuntu
21
21
22
22
# Tests
23
23
xeyes xeyes
Original file line number Diff line number Diff line change 1
- # docker base image for basic networking tools
1
+ # Ubuntu Docker base image with basic networking tools installed
2
2
3
- FROM ubuntu:focal
3
+ FROM ubuntu:noble
4
4
5
- RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y --no-install-recommends install \
6
- net-tools tcpdump telnet traceroute curl iperf3 knot-host openssh-client mtr-tiny socat nano vim-tiny \
7
- nmap iputils-ping \
5
+ RUN DEBIAN_FRONTEND=noninteractive apt update && apt -y --no-install-recommends install \
6
+ net-tools \
7
+ iproute2 \
8
+ tcpdump \
9
+ telnet \
10
+ traceroute \
11
+ curl \
12
+ iperf3 \
13
+ knot-host \
14
+ openssh-client \
15
+ mtr-tiny \
16
+ socat \
17
+ nano \
18
+ nmap \
19
+ iputils-ping \
8
20
&& rm -rf /var/lib/apt/lists/*
9
21
10
22
VOLUME [ "/root" ]
Original file line number Diff line number Diff line change @@ -21,6 +21,6 @@ The /root folder is mounted by default
21
21
First the base image has to be created:
22
22
23
23
```
24
- docker build -t gns3/ubuntu:focal .
25
- docker push gns3/ubuntu:focal (optional)
24
+ docker build -t gns3/ubuntu:noble .
25
+ docker push gns3/ubuntu:nobel (optional)
26
26
```
You can’t perform that action at this time.
0 commit comments