Add Dockerfile and fix listen address for Docker
This commit is contained in:
@@ -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}`);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user