From e890221c906855fdd9dacdf00ea77efbb57854f2 Mon Sep 17 00:00:00 2001 From: Jose Selesan Date: Fri, 29 May 2026 15:14:22 -0300 Subject: [PATCH] fix: usar --linker hoisted en bun install para compatibilidad con Node.js module resolution --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 59dfa0d..09513c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY apps/backend/package.json apps/backend/ COPY apps/frontend/package.json apps/frontend/ COPY packages/common/package.json packages/common/ -RUN bun install --frozen-lockfile +RUN bun install --frozen-lockfile --linker hoisted FROM deps AS frontend-build WORKDIR /app