networktools/Dockerfile

26 lines
612 B
Docker
Raw Permalink Normal View History

2019-05-28 14:34:22 +02:00
FROM debian:latest
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
2019-05-28 15:55:20 +02:00
LABEL ImageName="registry.gitlab.com/wolutator/networktools"
2019-05-28 14:34:22 +02:00
RUN \
apt-get update && \
apt-get install -y make && \
apt-get install -y openssh-client && \
apt-get install -y git && \
apt-get install -y python && \
apt-get install -y python-requests && \
apt-get install -y gpg && \
apt-get install -y apt-transport-https && \
apt-get install -y wget && \
apt-get install -y curl && \
apt-get install -y nmap && \
2019-05-28 15:55:20 +02:00
apt-get install -y snmp && \
apt-get install -y netcat && \
apt-get install -y tcpdump
2019-05-28 14:34:22 +02:00