ImageCompress / app.js
MukeshKapoor25's picture
Update app.js
19994df verified
raw
history blame contribute delete
275 Bytes
const express = require('express');
const app = express();
const port = process.env.PORT || 3000;
app.get('/', (req, res) => {
res.send('Hello, Node.js app running in Docker!');
});
app.listen(port, () => {
console.log(`App is running on http://localhost:${port}`);
});