My Node Js is not running in Docker Environment.Specifically, my Express module is not loaded in the Docker. Please help me out on this issue.
Please give me your mail id so that I can send my code for verification.
var express = require('express')
var app = express();
app.get('/', function (req, res) {
res.end('Hello world');
})
var server = app.listen(9005, function () {
var host = server.address().address
var port = server.address().port
console.log("Example app listening at http://%s:%s", host, port)
})
Dockerfile