fix: use node to invoke prisma CLI in runner stage (no .bin symlink)

This commit is contained in:
2026-06-17 14:08:25 +02:00
parent 53db30d716
commit 8a6d6ea82d
+1 -1
View File
@@ -54,4 +54,4 @@ USER nextjs
EXPOSE 3000 EXPOSE 3000
# Run DB migrations then start the app # Run DB migrations then start the app
CMD ["sh", "-c", "node_modules/.bin/prisma db push --skip-generate && node server.js"] CMD ["sh", "-c", "node node_modules/prisma/build/index.js db push --skip-generate && node server.js"]