fix(docker): Add missing dependencies for backend and add healthcheck for docker

This commit is contained in:
2025-04-30 15:40:43 +02:00
parent 53a0575773
commit 56b4d06db8
5 changed files with 964 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ const connection = mysql.createConnection({
connection.connect(err => {
if (err) {
console.error('DB connection failed:', err.stack);
return;
process.exit(1);
}
console.log('Connected to MySQL');
});