From e69112ca798c497cc04620bf64d40795db30bb6f Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Mon, 11 May 2026 12:46:08 +0530 Subject: [PATCH] build: upgrade bun to 1.3 --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5e65693..cd90cc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,10 @@ -FROM oven/bun:1.1-slim +FROM oven/bun:1.3-slim WORKDIR /app -# Copy package files first for better caching COPY package.json bun.lock* ./ -# Install dependencies, ignoring scripts (like Husky) which fail without .git RUN bun install --frozen-lockfile --ignore-scripts -# Copy the rest of the application COPY . . ENV NODE_ENV=production