EmilyReed96989 commited on
Commit
9930d8c
·
verified ·
1 Parent(s): cb0de70

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile CHANGED
@@ -37,6 +37,15 @@ RUN node openclaw.mjs plugins install @openclaw-china/channels || \
37
  RUN node openclaw.mjs plugins update channels || \
38
  echo "⚠️ Failed to update channels plugin, using installed version"
39
 
 
 
 
 
 
 
 
 
 
40
  # Install Chromium and dependencies for agent-browser
41
  RUN apt-get update && \
42
  apt-get install -y --no-install-recommends chromium \
 
37
  RUN node openclaw.mjs plugins update channels || \
38
  echo "⚠️ Failed to update channels plugin, using installed version"
39
 
40
+ # Install wecom-app-ops skill (optional but recommended for wecom-app operations)
41
+ RUN mkdir -p /root/.openclaw/skills && \
42
+ if [ -d "/root/.openclaw/extensions/openclaw-china/extensions/wecom-app/skills/wecom-app-ops" ]; then \
43
+ cp -a /root/.openclaw/extensions/openclaw-china/extensions/wecom-app/skills/wecom-app-ops /root/.openclaw/skills/ && \
44
+ echo "✅ wecom-app-ops skill installed"; \
45
+ else \
46
+ echo "⚠️ wecom-app-ops skill not found, skipping"; \
47
+ fi
48
+
49
  # Install Chromium and dependencies for agent-browser
50
  RUN apt-get update && \
51
  apt-get install -y --no-install-recommends chromium \