mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-18 20:37:57 +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
|
openvswitch openvswitch
|
||||||
ovs-snmp ovs-snmp --platform=linux/arm64
|
ovs-snmp ovs-snmp --platform=linux/arm64
|
||||||
pyats pyats
|
pyats pyats
|
||||||
ubuntu:focal ubuntu
|
ubuntu:noble ubuntu
|
||||||
|
|
||||||
# Tests
|
# Tests
|
||||||
xeyes xeyes
|
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 \
|
RUN DEBIAN_FRONTEND=noninteractive apt update && apt -y --no-install-recommends install \
|
||||||
net-tools tcpdump telnet traceroute curl iperf3 knot-host openssh-client mtr-tiny socat nano vim-tiny \
|
net-tools \
|
||||||
nmap iputils-ping \
|
iproute2 \
|
||||||
|
tcpdump \
|
||||||
|
telnet \
|
||||||
|
traceroute \
|
||||||
|
curl \
|
||||||
|
iperf3 \
|
||||||
|
knot-host \
|
||||||
|
openssh-client \
|
||||||
|
mtr-tiny \
|
||||||
|
socat \
|
||||||
|
nano \
|
||||||
|
nmap \
|
||||||
|
iputils-ping \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
VOLUME [ "/root" ]
|
VOLUME [ "/root" ]
|
||||||
|
@ -21,6 +21,6 @@ The /root folder is mounted by default
|
|||||||
First the base image has to be created:
|
First the base image has to be created:
|
||||||
|
|
||||||
```
|
```
|
||||||
docker build -t gns3/ubuntu:focal .
|
docker build -t gns3/ubuntu:noble .
|
||||||
docker push gns3/ubuntu:focal (optional)
|
docker push gns3/ubuntu:nobel (optional)
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user