chkrootkit with docker
I had the need to do some chkrootkit scans, so I decided to use docker to do it. The reason? I was needing to perform scans on machines not beeing able to install anything, but with permission to execute docker.
I wasn't comfortable with the idea of using someone's else container, so I got an autobuild system that I made with a friend some time ago, and put it to build and publish a fresh image which I'm more comfortable with, that you can find at the docker hub.

To lunch a scan, you only need to run
docker run --rm -it -v /:/target iotops/chkrootkit
You can find the source code here
Enjoy!