mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-19 04:47:54 +00:00
12 lines
369 B
Docker
12 lines
369 B
Docker
|
# docker base image for basic networking tools
|
||
|
|
||
|
FROM ubuntu:xenial
|
||
|
|
||
|
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 \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
VOLUME [ "/root" ]
|
||
|
CMD [ "sh", "-c", "cd; exec bash -i" ]
|
||
|
|