From 0167b2ffbf823d7cc49bdb4211bb6cdaf346498c Mon Sep 17 00:00:00 2001 From: openclaw Date: Sun, 15 Feb 2026 06:45:20 +0800 Subject: [PATCH] fix: Dockerfile gojieba dict path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3aeb55a..25f5035 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ COPY --from=builder /build/templates/ ./templates/ COPY --from=builder /build/config.yaml.example ./config.yaml.example # gojieba 词典文件 -COPY --from=builder /root/go/pkg/mod/github.com/yanyiwu/gojieba@v1.3.0/dict/ /app/dict/ +COPY --from=builder /go/pkg/mod/github.com/yanyiwu/gojieba@v1.3.0/dict/ /app/dict/ # 数据目录 VOLUME ["/app/data"]