Simple container image for debugging.
The debug container image is based on the latest Ubuntu LTS image and contains:
If you only want to run a single command:
docker run --rm ghcr.io/patrickhoefler/debug dig +short google.com
nerdctl run --rm ghcr.io/patrickhoefler/debug dig +short google.com
kubectl run --rm --restart=Never -iq --image ghcr.io/patrickhoefler/debug debug dig +short google.com
If you want to start an interactive debugging session:
docker run --rm -it ghcr.io/patrickhoefler/debug
nerdctl run --rm -it ghcr.io/patrickhoefler/debug
kubectl run --rm --restart=Never -it --image ghcr.io/patrickhoefler/debug debug