Skip to content

Commit 31bc46f

Browse files
authored
Merge pull request #901 from GNS3/docker-ubuntu-noble
Upgrade Ubuntu Docker image
2 parents 5035a53 + 49e2f98 commit 31bc46f

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

docker/docker_images

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ostinato-wireshark ostinato-wireshark
1717
openvswitch openvswitch
1818
ovs-snmp ovs-snmp --platform=linux/arm64
1919
pyats pyats
20-
ubuntu:focal ubuntu
20+
ubuntu:noble ubuntu
2121

2222
# Tests
2323
xeyes xeyes

docker/ubuntu/Dockerfile

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1-
# docker base image for basic networking tools
1+
# Ubuntu Docker base image with basic networking tools installed
22

3-
FROM ubuntu:focal
3+
FROM ubuntu:noble
44

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 \
820
&& rm -rf /var/lib/apt/lists/*
921

1022
VOLUME [ "/root" ]

docker/ubuntu/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ The /root folder is mounted by default
2121
First the base image has to be created:
2222

2323
```
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)
2626
```

0 commit comments

Comments
 (0)