Set prisma version in dockerfile

This commit is contained in:
2025-09-11 23:29:52 +02:00
parent e167a11434
commit b6b43618a7
+1 -1
View File
@@ -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