I have a nodejs project which includes bower, gulp, browser-sync etc. When i deploy my project to application nodejs container it throws that error:
Application failed bind to specified port[env variable $PORT]. Application logs ...
Start:
npm install
bower install
gulp serve:dist
In my configuration file i tried:
browserSync.instance = browserSync.init({
port : 80 //also tried 3000 and nothing it always throw that error.
});
Can you help me how can i solve it?