Fix: pnpm install --ignore-scripts to skip build errors
Some checks are pending
CI / Engine — lint / typecheck / test (push) Waiting to run
CI / API — lint / typecheck / test (push) Waiting to run
CI / Web — typecheck / lint / build (push) Waiting to run

This commit is contained in:
Manohar Gupta 2026-05-13 21:18:59 +05:30
parent cc068d02bf
commit 62144ff8ad

View file

@ -10,7 +10,7 @@ COPY package.json pnpm-lock.yaml ./
COPY . . COPY . .
# Install dependencies # Install dependencies
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile --ignore-scripts
# Build # Build
RUN pnpm build RUN pnpm build