server.ts

This commit is contained in:
yohlo
2026-02-08 23:19:48 -06:00
parent d4b52e762b
commit 1e3eaf0c35
3 changed files with 558 additions and 3 deletions

View File

@@ -25,4 +25,4 @@ ENV NITRO_PORT=3000
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
CMD bun -e "fetch('http://localhost:3000/api/health').then(r => r.ok ? process.exit(0) : process.exit(1)).catch(() => process.exit(1))"
CMD ["bun", "run", "./dist/server/index.mjs"]
CMD ["bun", "run", "server.ts"]