Files
test/app.js
danthe42 ee4af9589d
Some checks failed
ci / docker (push) Failing after 29s
xxxx
2025-11-06 18:04:28 +01:00

24 lines
452 B
JavaScript

const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write(`
## .
## ## ## ==
## ## ## ## ## ===
/""""""""""""""""\\___/ ===
{ / ===-
\\______ O __/
\\ \\ __/
\\____\\_______/
Hello from Docker!
`);
res.end();
});
server.listen(8080, () => {
console.log('Server started!');
});