mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-22 08:08:07 +00:00
26cc77ec1d
* Replace the default help text * Readme file, including the test config format documentation * Typo * Warn if config files / executables aren't found * Ignore original name of executable (as per current README) * Update tests to avoid failing on stat of a non-existant file * Add a makefile for ease of build
8 lines
174 B
Makefile
8 lines
174 B
Makefile
SOURCES := $(shell find . -name '*.go')
|
|
TARGET_OS := linux
|
|
|
|
cis_kubernetes: $(SOURCES)
|
|
GOOS=$(TARGET_OS) go build -o cis_kubernetes .
|
|
|
|
install: cis_kubernetes
|
|
./install.sh
|