chore(marketplace/backend-api): 🔧 Update Dockerfile.e2e for optimized E2E test execution with adjusted base images/env configs

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-01-30 15:31:50 -08:00
parent a3c354e084
commit 38bcff84c8

View file

@ -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