63ebf3e75f
Auto-Seed im Container scheiterte mit `ENOENT: tsx prisma/seed.ts`. Zwei Bugs zusammen: 1. `tsx` war devDependency – durch `npm ci --omit=dev` im Runtime weg. 2. `prisma db seed` spawnt den Befehl über System-PATH; node_modules/.bin ist dort nicht enthalten, also war auch das wieder einkopierte tsx nicht auffindbar. Fix: tsx in `dependencies` + Seed-Command auf `npx tsx prisma/seed.ts` (npx löst lokale .bin-Binaries auf, unabhängig vom Aufrufer-PATH). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>