I'm fairly new to Docker, and I'm trying to use perf to check performance on some stuff. Perf doesn't come with the images I'm using, so I went to install it. I used
apt-get update
apt-get install perf
which didn't work because perf is part of another package. I then tried
apt-get install -y linux-tools-common linux-tools-generic linux-tools-`uname -r`
which resulted in
E: Unable to locate package linux-tools-common
E: Unable to locate package linux-tools-generic
E: Unable to locate package linux-tools-3.10.0-862.3.3.el7.x86_64
E: Couldn't find any package by glob 'linux-tools-3.10.0-862.3.3.el7.x86_64'
E: Couldn't find any package by regex 'linux-tools-3.10.0-862.3.3.el7.x86_64'
Any recommendations as to what I should try?