mirror of
https://github.com/langgenius/dify-agentbox.git
synced 2026-07-01 20:24:11 -04:00
c22387cb39
* separate scripts into multiple RUN commands * update filenames range * loop filenames in array way * Add step start and complete messages
11 lines
160 B
Bash
11 lines
160 B
Bash
#!/bin/bash
|
|
set -ex
|
|
|
|
# Install Node.js global packages
|
|
npm install -g \
|
|
{% for pkg in nodejs_packages -%}
|
|
{{ pkg }} \
|
|
{% endfor %}
|
|
|
|
npm cache clean --force
|