gns3-registry/docker/ubuntu/Dockerfile
2017-03-20 11:41:39 +01:00

13 lines
394 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 \
nmap iputils-ping \
&& rm -rf /var/lib/apt/lists/*
VOLUME [ "/root" ]
CMD [ "sh", "-c", "cd; exec bash -i" ]