From fe00e52a25160a091d7ca8ee4b0c3ef9ee079412 Mon Sep 17 00:00:00 2001 From: huangzhenpc Date: Tue, 24 Mar 2026 17:59:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20bun=20install=20=E6=B7=BB=E5=8A=A0=20--n?= =?UTF-8?q?o-verify=20=E8=B7=B3=E8=BF=87=20tarball=20=E5=AE=8C=E6=95=B4?= =?UTF-8?q?=E6=80=A7=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa43de1c..e85d2e50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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