diff options
author | Petr Ospalý <p.ospaly@partner.samsung.com> | 2019-06-17 09:33:33 +0200 |
---|---|---|
committer | Petr Ospalý <p.ospaly@partner.samsung.com> | 2019-06-17 09:39:08 +0200 |
commit | 00bb4faa4b14d933a2a81c7344416610288b10c8 (patch) | |
tree | 71bcce29db0b537999199e44ff6cae1aea957c2d /dgbuilder | |
parent | 428403f72cd97df8bdded8dadb624cd01dde459a (diff) |
Fix dgbuilder image runtime dependencies
Move npm install into docker build phase, where it should be. Due to the
nature of the upstream project (node-RED) there can be still some
runtime dependencies - it depends on the use-case.
Issue-ID: CCSDK-1117
Signed-off-by: Petr Ospalý <p.ospaly@partner.samsung.com>
Change-Id: I2abda871b880d8323de186dba04f2d1d92ab7622
Diffstat (limited to 'dgbuilder')
-rwxr-xr-x | dgbuilder/start.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dgbuilder/start.sh b/dgbuilder/start.sh index 38f11582..0790a9d2 100755 --- a/dgbuilder/start.sh +++ b/dgbuilder/start.sh @@ -34,8 +34,6 @@ function isRunning { echo $(curl -I "$1" 2>/dev/null|head -1|tail -1|awk '{print $2}') } -npm install - if [ -e "releases/${releaseDir}/customSettings.js" ] then pid=$(cat releases/$releaseDir/logs/process_pid 2>/dev/null) |