fix(docker): 移除 stale COPY patches 行修复 docker build

d9210b3 升级 TanStack Start 至 1.167.48 时删除了 patches/ 目录
(upstream PR #7249 已修),但漏掉同步更新 Dockerfile,导致
docker build 报 "/patches": not found 失败。

验证:docker compose build app 通过。
This commit is contained in:
2026-04-25 16:37:43 +08:00
parent 34d2cbb1cd
commit f8af18cff5
-1
View File
@@ -3,7 +3,6 @@ FROM oven/bun:1.3.13 AS build
WORKDIR /app
COPY package.json bun.lock ./
COPY patches ./patches
RUN bun install --frozen-lockfile
COPY . .