From ed23a01c84dfc38db66d414daa1f7ed3aec86022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Prie=C3=9Fnitz?= Date: Wed, 3 Dec 2025 03:09:24 +0100 Subject: [PATCH] updated .\dockerfile and .\prisma\ [deploy] --- dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index 0ffc8de..cf8660e 100644 --- a/dockerfile +++ b/dockerfile @@ -16,8 +16,8 @@ RUN npm ci --include=dev # Copy source COPY . . -# Generate Prisma client (explicit schema path, use local binary) -RUN ls node_modules/.bin && ./node_modules/.bin/prisma generate --schema=prisma/schema.prisma +# Generate Prisma client (explicit schema path, use local binary via npx) +RUN npx prisma generate --schema=prisma/schema.prisma # Optional: show versions in build log RUN node -v && npm -v && npx prisma -v