diff --git a/docker/app.Dockerfile b/docker/app.Dockerfile index 8f5b079103..ba12368606 100644 --- a/docker/app.Dockerfile +++ b/docker/app.Dockerfile @@ -18,7 +18,7 @@ COPY packages/db/package.json ./packages/db/package.json # Install turbo globally and dependencies with cache mount for faster builds RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \ bun install -g turbo && \ - bun install --frozen-lockfile --omit dev --ignore-scripts + bun install --omit=dev --ignore-scripts # ======================================== # Builder Stage: Build the Application diff --git a/docker/realtime.Dockerfile b/docker/realtime.Dockerfile index f69f042a10..cdcc970444 100644 --- a/docker/realtime.Dockerfile +++ b/docker/realtime.Dockerfile @@ -17,7 +17,7 @@ COPY packages/db/package.json ./packages/db/package.json # Install dependencies with cache mount for faster builds RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \ - bun install --frozen-lockfile --omit dev --ignore-scripts + bun install --omit=dev --ignore-scripts # ======================================== # Builder Stage: Prepare source code