docker file update

This commit is contained in:
VinceC
2025-01-04 11:45:46 -06:00
parent 93679f8828
commit fb718c47f0
2 changed files with 27 additions and 7 deletions

View File

@@ -54,4 +54,9 @@ process.on('SIGTERM', async () => {
console.error('Error during shutdown:', error);
process.exit(1);
}
});
// Add health check endpoint
app.get('/health', (req, res) => {
res.status(200).json({ status: 'healthy' });
});