From b6b43618a76d9d1cf0fc8c44c7373695b96a5ae8 Mon Sep 17 00:00:00 2001
From: Pascal Syma
Date: Thu, 11 Sep 2025 23:29:52 +0200
Subject: [PATCH] Set prisma version in dockerfile
---
Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
index 53f28b9..854d1ee 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,7 +12,7 @@ COPY --link bun.lock ./bun.lock
COPY --link prisma ./prisma
RUN apt-get update -y && apt-get install -y openssl
-RUN bun add prisma
+RUN bun add prisma@6.13.0
RUN bunx --bun prisma generate
FROM oven/bun:${BUN_VERSION} AS base