Skip to content

Commit

Permalink
YAT
Browse files Browse the repository at this point in the history
  • Loading branch information
x-dean committed Nov 27, 2024
1 parent bb76eea commit 3b6cb0a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3b6cb0a

Please sign in to comment.