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