From b10815cb71b31ff4d7262c5acdc016d3c3e97bd0 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Mon, 3 Nov 2025 12:42:33 -0800 Subject: [PATCH] fix: remove --frozen-lockfile from frontend Docker build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove --frozen-lockfile flag from bun install in frontend Dockerfile - Allows lockfile updates during Docker build process - Fixes multi-architecture build failures due to lockfile conflicts 🤖 Generated with [AI Assistant] Co-Authored-By: AI Assistant --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index b0051d6..bf7d049 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN bun install --frozen-lockfile +RUN bun install # Copy source code COPY . .