From e94fdf1d38197936f12d9f26c14a418f9bbc2c3f Mon Sep 17 00:00:00 2001 From: Stefan Melmuk Date: Thu, 31 Aug 2023 19:56:04 +0200 Subject: [PATCH] don't run `npm audit fix` currently it fails (because it can't resolve the $tailwindcss reference) but also in general we might not want to depend on automatic updating the dependencies without checking them first. --- Dockerfile | 1 - scripts/build_web_vault.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b3623a5..de918a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,6 @@ RUN bash /apply_patches.sh # Build RUN npm ci -RUN npm audit fix || true # Switch to the web apps folder WORKDIR /vault/apps/web diff --git a/scripts/build_web_vault.sh b/scripts/build_web_vault.sh index 0eb63e9..4177eb0 100755 --- a/scripts/build_web_vault.sh +++ b/scripts/build_web_vault.sh @@ -20,7 +20,6 @@ npm --version # Build pushd "${VAULT_FOLDER}" npm ci -npm audit fix || true pushd apps/web npm run dist:oss:selfhost