A minimal Go program that stays running until it receives a termination signal (SIGTERM or SIGINT).
This is useful in container environments where you need a lightweight process to keep a container alive, e.g. while executing STIG profiles against a running container image.
go build -o anchore-keep-alive ../anchore-keep-aliveThe process will run indefinitely until it receives SIGTERM or SIGINT (Ctrl+C).