try again

This commit is contained in:
dal 2025-07-21 15:19:38 -06:00
parent c60ca104ca
commit 0feb690bbe
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 3 additions and 1 deletions

View File

@ -23,9 +23,11 @@ COPY packages/ ./packages/
COPY apps/server/ ./apps/server/
# Incremental install - only installs NEW/UPDATED packages since base
# Force reinstall to ensure all dependencies are properly linked
RUN START=$(date +%s) && \
echo "=== Starting incremental dependency update ===" && \
time pnpm install --ignore-scripts && \
rm -rf node_modules && \
time pnpm install --ignore-scripts --frozen-lockfile && \
END=$(date +%s) && \
echo "Finished dependency update in $((END - START)) seconds"