A lightweight bloated docker image, which was meant for doing quick actions in a k8s cluster. I usually use it for doing some investigations, so the name was supposed to reflect that:
kubectl run -it wtfd --image=joelazar/wtfd:latest
kubectl exec -it wtfd -- fish
kubectl delete pod wtfd
docker run -it --detach --name wtfd joelazar/wtfd:latest
docker exec -it wtfd fish
docker rm -fv wtfd
This container is built on latest arch image with an AUR helper (yay), and some extra packages, for example:
For a complete list take a look into the Dockerfile.
And of course you can install other packages with the following command:
sudo -u aur yay -S $PACKAGENAME
This image gets built every day, so the latest tag will always contain the latest available packages.