My Node Dockfile:
Dockfile
# Set the base image to ubuntu FROM ubuntu # Define working directory ADD . /src WORKDIR /src # Install Node.js & other
In my package config I had "bcrypt":"^0.8.0" and when I took out the ^ and changed it to "bcrypt":"0.8.0" I was able to get everything running.
"bcrypt":"^0.8.0"
^
"bcrypt":"0.8.0"
The issue was that it was trying to run bcrypt 0.8.5 and that was causing issues for some reason.