diff --git a/Dockerfile b/Dockerfile index ab381f7..c47e58b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,8 @@ RUN bun install --ignore-scripts --production --frozen-lockfile FROM base AS builder COPY prisma ./prisma/ -RUN bunx prisma generate + +RUN bun install --ignore-scripts --frozen-lockfile && bunx prisma generate COPY . .