26 lines
612 B
Docker
26 lines
612 B
Docker
FROM debian:latest
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.gitlab.com/wolutator/networktools"
|
|
|
|
|
|
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 && \
|
|
apt-get install -y snmp && \
|
|
apt-get install -y netcat && \
|
|
apt-get install -y tcpdump
|
|
|
|
|
|
|
|
|