fix(web): skip lifecycle scripts in Docker install (#40763)

This commit is contained in:
yyh 2026-08-14 05:12:14 +00:00 committed by GitHub
parent 0f63a05d04
commit 9acdcbe2f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@ COPY packages /app/packages
RUN corepack install
# Install workspace dependencies for the Docker build environment.
RUN VITE_GIT_HOOKS=0 pnpm install --frozen-lockfile
RUN pnpm install --frozen-lockfile --ignore-scripts
# build resources
FROM base AS builder