xxxx
Some checks failed
ci / docker (push) Failing after 29s

This commit is contained in:
2025-11-06 18:04:28 +01:00
parent f524db719c
commit ee4af9589d
5 changed files with 83 additions and 3 deletions

23
app.js Normal file
View File

@@ -0,0 +1,23 @@
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!');
});