I read npm install -g (note that no package name is specified) in a Dockerfile. What does it do?
My first guess is, it seems to install the current package (according to ./package.json in current folder) as a global package
I see the following output:
npm install -g
+ [email protected]
added 1 package in 0.537s
Note: Not to be confused with this question with apparently similar title: What exactly does 'npm install -g ' do?
which is about install -g <package-name> with a specific package, which is not my question.