From 32a1645a7551686e48037cd641a26b29ca165e38 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Thu, 26 Sep 2024 18:19:54 +0200 Subject: [PATCH] ci: also skip npm audit during build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 273a746d1..0e37872fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,6 @@ RUN apt-get update && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* RUN echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env -RUN npm ci && npm run build && npm run build:docs && npm prune --production +RUN npm ci --no-audit && npm run build && npm run build:docs && npm prune --production CMD ["node", "./lib/index.js"]