From 3b6cb0a8168362ad71da902111c376f6082fbc85 Mon Sep 17 00:00:00 2001 From: dean Date: Wed, 27 Nov 2024 14:09:16 +0100 Subject: [PATCH] YAT --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ce16fbf..ef07ebf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,10 +20,13 @@ RUN ls /app || true # Install global Grunt CLI RUN npm install -g grunt-cli -# Install project dependencies (including Grunt) -RUN npm install --legacy-peer-deps --no-audit --no-fund +# Run npm install with verbose logging and additional flags for debugging +RUN npm install --legacy-peer-deps --no-audit --no-fund --verbose || true -# Debug: Check if Grunt is installed locally +# Debug: List the installed packages to confirm installation +RUN npm list --depth=0 || true + +# Debug: Check for grunt specifically RUN npm ls grunt || true RUN npm ls grunt-cli || true