Currently when building the Docker image, it fails on npm install due to the lack of git. Installing git to the image before running npm install fixes this issue, resulting in a successful build.
Others have had this issue after Dockerizing other bridges basing them off node alpine instead of the default debian-based image, thanks for addressing it.
Currently when building the Docker image, it fails on
npm install
due to the lack of git. Installing git to the image before runningnpm install
fixes this issue, resulting in a successful build.