From ca2d72921105ff4a155d3e358f4519c567afc98d Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sat, 22 Nov 2025 19:07:45 +0100 Subject: [PATCH] Add bandit in Makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9d6bc507..a0c7b8c1 100644 --- a/Makefile +++ b/Makefile @@ -212,9 +212,12 @@ memory-profiling: ## Profile memory usage rm -f $(PROFILE) # Trivy installation: https://aquasecurity.github.io/trivy/latest/getting-started/installation/ -trivy: ## Run Trivy to find vulnerabilities in container images +trivy: ## Run Trivy to find vulnerabilities $(UV_RUN) run trivy fs ./glances/ +bandit: ## Run Bandit to find vulnerabilities + $(UV_RUN) run bandit glances -r + # =================================================================== # Docs # ===================================================================