You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
npm is not found in $PATH on the container. I am running docker under ubuntu 18.04.
Steps To Reproduce
follow install instruction
bin/npm --version
Expected Result
retrieve the version of npm installed in the container.
Actual Result
OCI runtime exec failed: exec failed: container_linux.go:346: starting container process caused "exec: "npm": executable file not found in $PATH": unknown
The text was updated successfully, but these errors were encountered:
grll
changed the title
NPM executable file not found in $PATH"
NPM executable file not found in $PATH
Jan 10, 2020
I actually can't find where is npm or node installed in the php container. It seems to me that node is here because it comes already packaged in the official php image ?
I temporarily installed npm manually in the container and it is now working, the issue could be fixed by installing npm in the php Dockerfile.
Resolved in commit above, will momentarily build new PHP images. What happened is that the node source changed/deprecated 8.x, and somehow removed npm from the build process. I updated the script to install node 10.x (the current LTS version) and have confirmed npm 6.x gets installed along with it.
Description
npm is not found in $PATH on the container. I am running docker under ubuntu 18.04.
Steps To Reproduce
Expected Result
retrieve the version of npm installed in the container.
Actual Result
OCI runtime exec failed: exec failed: container_linux.go:346: starting container process caused "exec: "npm": executable file not found in $PATH": unknown
The text was updated successfully, but these errors were encountered: