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 1bfe5ce commit bb76eea
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ RUN ls /app || true
# Install global Grunt CLI
RUN npm install -g grunt-cli

# Run npm install with more logging and suppression of certain warnings
RUN npm install --legacy-peer-deps --no-audit --no-fund || true
# Install project dependencies (including Grunt)
RUN npm install --legacy-peer-deps --no-audit --no-fund

# Debug: List installed packages
RUN npm list --depth=0 || true

# Check for specific missing dependencies
# Debug: Check if Grunt is installed locally
RUN npm ls grunt || true
RUN npm ls grunt-cli || true

# Manually execute necessary Grunt tasks
# List all node_modules binaries (including grunt)
RUN ls ./node_modules/.bin/ || true

# Manually execute necessary Grunt tasks with full path
RUN ./node_modules/.bin/grunt exec:fixCryptoApiImports && \
./node_modules/.bin/grunt exec:fixSnackbarMarkup && \
./node_modules/.bin/grunt exec:fixJimpModule
Expand Down

0 comments on commit bb76eea

Please sign in to comment.