The readme suggests using NPX for MCP servers, which is convenient, but the docker image doesn't contain npx by default
root@srv1073822:~# docker exec -it root-nexus-1 node -v
OCI runtime exec failed: exec failed: unable to start container process: exec: "node": executable file not found in $PATH
root@srv1073822:~# docker exec -it root-nexus-1 npx -v
OCI runtime exec failed: exec failed: unable to start container process: exec: "npx": executable file not found in $PATH
or python for that matter which is also referenced
root@srv1073822:~# docker exec -it root-nexus-1 python -v
OCI runtime exec failed: exec failed: unable to start container process: exec: "python": executable file not found in $PATH
it would be really convenient to have these pre-installed - but if not at least call it out next to the examples to avoid confusion. Another option might be to have different docker builds with these installed?
The readme suggests using NPX for MCP servers, which is convenient, but the docker image doesn't contain npx by default
or python for that matter which is also referenced
it would be really convenient to have these pre-installed - but if not at least call it out next to the examples to avoid confusion. Another option might be to have different docker builds with these installed?