-
Amir Jerbi authored
The Github project name was changed to "kube-bench" so there was a need to modify Dockerfile references. Also modified the text output of the entrypoint to be friendlier.
Amir Jerbi authoredThe Github project name was changed to "kube-bench" so there was a need to modify Dockerfile references. Also modified the text output of the entrypoint to be friendlier.
entrypoint.sh 468 B
#!/bin/sh
if [ -d /host ]; then
mkdir -p /host/cfg/
yes | cp -rf ./kube-bench/cfg/* /host/cfg/
yes | cp -rf ./kube-bench/kube-bench /host/
echo "==============================================="
echo "kube-bench is now installed on your host "
echo "Run ./kube-bench to perform a security check "
echo "==============================================="
else
echo "Usage:"
echo " docker run --rm -v \`pwd\`:/host aquasec/kube-bench"
exit
fi