We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec9c7b2 commit 8b59967Copy full SHA for 8b59967
Dockerfile
@@ -1,4 +1,3 @@
1
-
2
# Stage 1: Build the application
3
FROM node:24-alpine AS builder
4
@@ -23,6 +22,9 @@ RUN pnpm install --unsafe-perm \
23
22
&& echo '--- DEBUG: node_modules/.bin contents ---' \
24
&& ls -l node_modules/.bin || true
25
+# Copy prisma directory separately
26
+COPY prisma ./prisma
27
+
28
# Copy the rest of your application code
29
COPY . .
30
0 commit comments