fix: Correct backend healthcheck command - remove 'run' from bun -e

This commit is contained in:
Francesco
2026-02-19 02:34:40 +00:00
parent b8ccd00cb4
commit da34fc0304

View File

@@ -33,7 +33,7 @@ services:
postgres:
condition: service_healthy
healthcheck:
test: ["CMD", "bun", "run", "-e", "require('http').createServer(() => {}).listen(3001)"]
test: ["CMD", "bun", "-e", "require('http').createServer(() => {}).listen(3001)"]
interval: 30s
timeout: 10s
retries: 3