Simford.Dong Claude Opus 4.6 commited on
Commit ·
413f7e0
1
Parent(s): ba991ac
fix: install missing Feishu SDK dependency
Browse files- Add npm install for @larksuiteoapi/node-sdk
- Fixes "Cannot find module '@larksuiteoapi/node-sdk'" error
- Required by Feishu plugin for Lark/Feishu API integration
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -27,6 +27,9 @@ RUN update-ca-certificates && \
|
|
| 27 |
ENV HOME=/root
|
| 28 |
RUN npm install -g openclaw@latest zod --unsafe-perm
|
| 29 |
|
|
|
|
|
|
|
|
|
|
| 30 |
# 5. 设置环境变量
|
| 31 |
ENV PORT=7860 \
|
| 32 |
OPENCLAW_GATEWAY_MODE=local \
|
|
|
|
| 27 |
ENV HOME=/root
|
| 28 |
RUN npm install -g openclaw@latest zod --unsafe-perm
|
| 29 |
|
| 30 |
+
# 4.1 安装 Feishu 插件依赖 (openclaw 缺少 peer dependency)
|
| 31 |
+
RUN npm install -g @larksuiteoapi/node-sdk --unsafe-perm
|
| 32 |
+
|
| 33 |
# 5. 设置环境变量
|
| 34 |
ENV PORT=7860 \
|
| 35 |
OPENCLAW_GATEWAY_MODE=local \
|