Docker container with utilities for troubleshooting and debugging
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 332B

12345678910111213141516171819
  1. FROM debian:buster-slim
  2. RUN apt-get -qq update \
  3. && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y --no-install-recommends \
  4. iproute2 \
  5. tcpdump \
  6. strace \
  7. dnsutils \
  8. mtr \
  9. nmap \
  10. vim \
  11. build-essential \
  12. curl \
  13. ca-certificates \
  14. git \
  15. python3 \
  16. python3-venv \
  17. bash-completion \
  18. && rm -rf /var/lib/apt/lists/*