To start a bash prompt with only Docker installed on your host OS, run the following command:
docker run --rm -v $PWD:/src -w /src -u node -it node /bin/bash
Here's what each parameter does:
--rm
removes the container once youexit
-v $PWD:/src
will mount your current host working directory into/src
inside the container