Update Dockerfile to install pnpm globally and upgrade OpenClaw version to 2026.2.6-3; fix version in config.yaml to 0.5.34

This commit is contained in:
techartdev
2026-02-08 03:27:00 +02:00
parent d64ed0666f
commit a329088436
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -43,6 +43,9 @@ RUN ARCH=$(echo ${TARGETARCH:-$(dpkg --print-architecture)} | sed 's|arm64|aarch
RUN node -v && npm -v
# Install pnpm globally (required by some OpenClaw skills like clawhub)
RUN npm install -g pnpm && pnpm -v
# Install Chromium for website automation tasks
# Includes necessary dependencies for headless browser operation
RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -83,7 +86,7 @@ USER root
# Install OpenClaw globally
RUN npm config set fund false && npm config set audit false \
&& npm install -g openclaw@2026.2.3-1
&& npm install -g openclaw@2026.2.6-3
COPY run.sh /run.sh
COPY oc_config_helper.py /oc_config_helper.py