From bf1725a4b8a1f2c53d97ac0968a9908a213f177f Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Mon, 15 Jun 2026 13:58:23 +0700 Subject: [PATCH] fix(docker): remove non-existent shared/node_modules COPY from API Dockerfile packages/shared has only devDependencies (typescript). After bun install --production, packages/shared/node_modules does not exist. Root node_modules contains all hoisted deps. Co-Authored-By: Claude --- apps/api/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 0bb72d8..51648b3 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -15,7 +15,6 @@ ENV API_PORT=3000 COPY --from=deps /app/node_modules ./node_modules COPY --from=deps /app/apps/api/node_modules apps/api/node_modules -COPY --from=deps /app/packages/shared/node_modules packages/shared/node_modules COPY --from=deps /app/bun.lock ./bun.lock COPY package.json bunfig.toml tsconfig.base.json ./ COPY apps/api apps/api