Add Dockerfile and fix listen address for Docker

This commit is contained in:
Ubuntu
2026-03-01 13:56:49 +00:00
parent a8e52093aa
commit 2aa2a95475
3 changed files with 24 additions and 1 deletions

View File

@@ -117,6 +117,6 @@ app.get('*', (_req, res) => {
res.sendFile(join(distPath, 'index.html'));
});
app.listen(PORT, '127.0.0.1', () => {
app.listen(PORT, '0.0.0.0', () => {
console.log(`Kenteken Gen server draait op poort ${PORT}`);
});