• telnet:busybox-extras
  • net-tools: net-tools
  • tcpdump: tcpdump
  • wget: wget
  • dig nslookup: bind-tools
  • curl: curl
  • nmap: nmap
  • wget ifconfig nc traceroute.. : busybox
  • ssh: openssh-client
  • ss iptables: iproute2
  • ethtool: ethtool
yaml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
FROM  alpine
MAINTAINER  
RUN sed -i 's@http://dl-cdn.alpinelinux.org/@https://mirrors.aliyun.com/@g' /etc/apk/repositories
RUN apk add --no-cache --virtual .persistent-deps \
                curl \
		tcpdump \
                iproute2 \
                bind-tools \
                ethtool \
                busybox-extras \
                libressl \
                openssh-client \
		busybox
CMD  [ "tail", "-f" ]