Docker Linux – Kill Command Not Found in Docker Container

dockerlinux

Noob question here: I'm using a docker image based on docker-slim, which doesn't seem to have the kill command by default. I tried using apt-get install kill, but apt can't find the package.

What should I install to have this command at my disposal?

Best Answer

The kill command is in package procps. So apt-get install procps will do.