From 5aa4a70bd3f62ff1bbd17118f61fcb1b369c77de Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 30 Jul 2025 15:35:16 -0700 Subject: [PATCH] fix grype scan --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 358f49b14d..7af20dfe64 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1486,13 +1486,13 @@ jobs: # Build and scan Dockerfile.database echo "Building and scanning Dockerfile.database..." docker build -t litellm-database:latest -f ./docker/Dockerfile.database . - grype litellm-database:latest --fail-on high + grype litellm-database:latest --fail-on critical # Build and scan main Dockerfile echo "Building and scanning main Dockerfile..." docker build -t litellm:latest . - grype litellm:latest --fail-on high + grype litellm:latest --fail-on critical - run: name: Build Docker image command: docker build -t my-app:latest -f ./docker/Dockerfile.database .