1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-22 16:18:07 +00:00

Fixed paths in entrypoint.sh

The paths in the copy commands for cfg dir and kube-bench binary were not pointing to where those actually lived in the container.
This commit is contained in:
Jim Weber 2017-12-10 23:20:14 -05:00
parent 94b960cfad
commit 882fa5dd16

View File

@ -1,8 +1,8 @@
#!/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/
yes | cp -rf ./cfg/* /host/cfg/
yes | cp -rf ./kube-bench /host/
echo "==============================================="
echo "kube-bench is now installed on your host "
echo "Run ./kube-bench to perform a security check "