From 3386ffc41e1362e1c9b1e7a5df8809ac13301fef Mon Sep 17 00:00:00 2001 From: zhipu Date: Wed, 25 Mar 2026 17:20:43 +0000 Subject: [PATCH] Fix bun install command - remove invalid --production=false flag --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a4813af..e60cff4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,8 +15,8 @@ COPY prisma ./prisma/ # Install bun for faster installs RUN npm install -g bun -# Install dependencies -RUN bun install --frozen-lockfile --production=false +# Install dependencies (including devDependencies for build) +RUN bun install --frozen-lockfile # Stage 2: Builder FROM node:20-alpine AS builder