fix: force db:push with yes pipe + add error logging to summaries

This commit is contained in:
2026-01-30 04:48:22 +00:00
parent fe18fc12f9
commit 602e1ed75b
2 changed files with 26 additions and 21 deletions

View File

@@ -10,4 +10,4 @@ COPY . .
# Generate migrations and run
EXPOSE 3100
CMD ["sh", "-c", "bun run db:push && bun run start"]
CMD ["sh", "-c", "echo 'Running db:push...' && yes | bun run db:push 2>&1 && echo 'db:push done' && bun run start"]