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.

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