From 75d4f5b41718632c221491844640760601aeaa4b Mon Sep 17 00:00:00 2001 From: Manus Date: Sat, 3 Jan 2026 06:27:33 -0500 Subject: [PATCH] fix: Remove invalid --production=false flag from bun install Bun v1.1.3 does not support the --production=false syntax. The --production flag in this version is a boolean flag that does not accept a value. This change removes the flag entirely to install all dependencies including devDependencies, which is the intended behavior when --production=false was used. Fixes the Docker build failure in Google Cloud Build. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ca90b349..df7ec930 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app COPY package.json bun.lock* ./ # Install dependencies -RUN bun install --frozen-lockfile --production=false +RUN bun install --frozen-lockfile # Stage 2: Build stage FROM oven/bun:1.1.3-alpine AS builder