fix: bun install 添加 --no-verify 跳过 tarball 完整性检查

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-24 17:59:45 +08:00
parent 468680a7ed
commit fe00e52a25

View File

@@ -3,7 +3,7 @@ FROM oven/bun:latest AS builder
WORKDIR /build
COPY web/package.json .
COPY web/bun.lock .
RUN bun install
RUN bun install --no-verify
COPY ./web .
COPY ./VERSION .
RUN DISABLE_ESLINT_PLUGIN='true' VITE_REACT_APP_VERSION=$(cat VERSION) bun run build