fix(wallet-service): use npm install instead of npm ci

wallet-service doesn't have package-lock.json, npm ci requires it.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Developer 2025-12-02 02:28:24 -08:00
parent 3dd561bd24
commit b39344a604
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ COPY nest-cli.json ./
COPY prisma ./prisma/
# Install dependencies
RUN npm ci
RUN npm install
# Generate Prisma client
RUN npx prisma generate
@ -34,7 +34,7 @@ WORKDIR /app
# Install production dependencies only
COPY package*.json ./
RUN npm ci --only=production
RUN npm install --omit=dev
# Copy Prisma schema and generate client
COPY prisma ./prisma/