From 0de566d9cb941d6704ea79a13a1484939f0d21d1 Mon Sep 17 00:00:00 2001 From: Greg Tyler Date: Tue, 14 Jan 2020 12:04:47 +0000 Subject: [PATCH] Only look for moderate and above vulnerabilities (#201) There's currently a low-level vulnerability that's blocking all builds --- client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index 20cddf865b..0d2dcb2de6 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -12,7 +12,7 @@ RUN npm install # Check linting RUN npm run lint -RUN npm audit +RUN npm audit --audit-level=moderate # Build assets RUN NODE_ENV=production npm run build