mirror of https://github.com/buster-so/buster.git
try again
This commit is contained in:
parent
c60ca104ca
commit
0feb690bbe
|
@ -23,9 +23,11 @@ COPY packages/ ./packages/
|
||||||
COPY apps/server/ ./apps/server/
|
COPY apps/server/ ./apps/server/
|
||||||
|
|
||||||
# Incremental install - only installs NEW/UPDATED packages since base
|
# Incremental install - only installs NEW/UPDATED packages since base
|
||||||
|
# Force reinstall to ensure all dependencies are properly linked
|
||||||
RUN START=$(date +%s) && \
|
RUN START=$(date +%s) && \
|
||||||
echo "=== Starting incremental dependency update ===" && \
|
echo "=== Starting incremental dependency update ===" && \
|
||||||
time pnpm install --ignore-scripts && \
|
rm -rf node_modules && \
|
||||||
|
time pnpm install --ignore-scripts --frozen-lockfile && \
|
||||||
END=$(date +%s) && \
|
END=$(date +%s) && \
|
||||||
echo "Finished dependency update in $((END - START)) seconds"
|
echo "Finished dependency update in $((END - START)) seconds"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue