We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 298662c commit 9ff902bCopy full SHA for 9ff902b
apps/api/Dockerfile
@@ -18,7 +18,8 @@ RUN curl -fsSL https://bun.sh/install | bash \
18
COPY . .
19
20
# Generate Prisma client inside the image (ensures runtime client matches installed deps)
21
-RUN export PATH="/root/.bun/bin:$PATH" \
+RUN export BUN_INSTALL="/root/.bun" \
22
+ && export PATH="$BUN_INSTALL/bin:$PATH" \
23
&& bunx prisma generate
24
25
# Set environment variables
0 commit comments