From 8c842ff3aae9486cd7e7fe89825f29f2829da9d3 Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Sun, 10 Mar 2024 15:52:59 +0100 Subject: [PATCH] Create a fake husky to fix the CI --- core/admin/assets/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/admin/assets/Dockerfile b/core/admin/assets/Dockerfile index 77196726..762925af 100644 --- a/core/admin/assets/Dockerfile +++ b/core/admin/assets/Dockerfile @@ -8,6 +8,8 @@ COPY package.json ./ RUN set -euxo pipefail \ ; npm config set update-notifier false \ + ; echo "#!/bin/sh" >/usr/local/bin/husky \ + ; chmod +x /usr/local/bin/husky \ ; npm install --no-audit --no-fund \ ; sed -i 's/#007bff/#55a5d9/' node_modules/admin-lte/build/scss/_bootstrap-variables.scss \ ; mkdir assets \