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:
--rmremoves the container once youexit-v $PWD:/srcwill mount your current host working directory into/srcinside the container