• 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
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" ]

相关文章:

  • 2021-12-14
  • 2021-04-21
  • 2021-11-19
  • 2022-12-23
  • 2021-09-14
  • 2021-05-04
  • 2021-04-14
  • 2021-05-28
猜你喜欢
  • 2021-12-04
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2022-01-09
  • 2022-12-23
相关资源
相似解决方案