Fix npm install commands in Dockerfiles and ops scripts

This commit is contained in:
wiz
2022-07-07 18:32:18 +02:00
parent 6ead907e08
commit d57193c269
4 changed files with 6 additions and 6 deletions

View File

@@ -56,7 +56,7 @@ build_frontend()
if [ ! -e "mempool-frontend-config.json" ];then
cp "${HOME}/mempool/production/mempool-frontend-config.${site}.json" "mempool-frontend-config.json"
fi
npm install --prod --no-optional || exit 1
npm install --omit=dev --omit=optional || exit 1
npm run build || exit 1
}
@@ -75,7 +75,7 @@ build_backend()
-e "s!__ELEMENTS_RPC_PASS__!${ELEMENTS_RPC_PASS}!" \
"mempool-config.json"
fi
npm install --prod --no-optional || exit 1
npm install --omit=dev --omit=optional || exit 1
npm run build || exit 1
}