ci: pnpm install sin --offline (descarga solo faltante del store)

This commit is contained in:
Lizandro Guarnizo
2026-06-09 21:33:05 -05:00
parent 4ef190c7a2
commit a6b9edd256
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ RUN pnpm install --frozen-lockfile 2>/dev/null || pnpm install
FROM base AS builder
COPY . .
COPY --from=deps /app/node_modules ./node_modules
RUN pnpm install --offline 2>&1
RUN pnpm install --frozen-lockfile 2>/dev/null || pnpm install
RUN pnpm --filter @moraworld/database exec prisma generate && pnpm --filter @moraworld/database build
ARG DATABASE_URL
RUN pnpm --filter @moraworld/api build