From 35b64ae5f5a9e73e2b7053b3e2d48b1e414a7abf Mon Sep 17 00:00:00 2001 From: Ho Ngoc Hai Date: Tue, 14 Apr 2026 14:24:58 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20Web=20Dockerfile=20=E2=80=94=20remove=20?= =?UTF-8?q?invalid=20COPY=20with=20shell=20redirect?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dockerfile COPY doesn't support shell redirects (2>/dev/null || true). With node-linker=hoisted, all deps are in root node_modules anyway. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/web/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 689af1d..0e01658 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -16,7 +16,6 @@ RUN pnpm install --frozen-lockfile --filter @goodgo/web... FROM base AS build COPY --from=deps /app/.npmrc ./ COPY --from=deps /app/node_modules ./node_modules -COPY --from=deps /app/apps/web/node_modules ./apps/web/node_modules 2>/dev/null || true COPY tsconfig.base.json ./ COPY apps/web/ apps/web/ RUN cd apps/web && npx next build