From 38bcff84c86c96b71b7425af0948fe72f44a04b2 Mon Sep 17 00:00:00 2001 From: Lilith Date: Fri, 30 Jan 2026 15:31:50 -0800 Subject: [PATCH] =?UTF-8?q?chore(marketplace/backend-api):=20=F0=9F=94=A7?= =?UTF-8?q?=20Update=20Dockerfile.e2e=20for=20optimized=20E2E=20test=20exe?= =?UTF-8?q?cution=20with=20adjusted=20base=20images/env=20configs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/marketplace/backend-api/Dockerfile.e2e | 3 +++ 1 file changed, 3 insertions(+) diff --git a/features/marketplace/backend-api/Dockerfile.e2e b/features/marketplace/backend-api/Dockerfile.e2e index 428713179..6e6a71b58 100755 --- a/features/marketplace/backend-api/Dockerfile.e2e +++ b/features/marketplace/backend-api/Dockerfile.e2e @@ -29,6 +29,9 @@ RUN rm -rf feature/node_modules feature/.pnpm-store feature/bun.lockb feature/bu WORKDIR /app/feature RUN npm install --legacy-peer-deps +# Install peer dependencies required by @lilith/nestjs-auth (not auto-installed with --legacy-peer-deps) +RUN npm install --legacy-peer-deps @nestjs/passport@11 passport@0.7 passport-jwt@4 + # Build the application (NestJS with SWC) RUN npm run build