Skip to content

Commit 02f8103

Browse files
committed
Fix: correct ttyd arch mapping (arm64->aarch64); bump to 0.5.34
1 parent 7cb0782 commit 02f8103

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

openclaw_assistant_dev/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
2929
&& rm -rf /var/lib/apt/lists/*
3030

3131
# Install ttyd (web terminal) - not in Debian repos, download binary
32+
# Docker TARGETARCH: amd64, arm64, arm/v7 → ttyd filenames: x86_64, aarch64, armhf
3233
ARG TARGETARCH
33-
RUN ARCH=$(echo ${TARGETARCH:-$(dpkg --print-architecture)} | sed 's/aarch64/arm64/;s/armv7/armhf/;s/amd64/x86_64/') \
34+
RUN ARCH=$(echo ${TARGETARCH:-$(dpkg --print-architecture)} | sed 's|arm64|aarch64|;s|arm/v7|armhf|;s|armv7|armhf|;s|amd64|x86_64|') \
35+
&& echo "Downloading ttyd for arch: ${ARCH}" \
3436
&& curl -fsSL "https://github.com/tsl0922/ttyd/releases/download/1.7.7/ttyd.${ARCH}" -o /usr/local/bin/ttyd \
3537
&& chmod +x /usr/local/bin/ttyd
3638

openclaw_assistant_dev/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: OpenClaw Assistant (DEV)
2-
version: "0.5.33"
2+
version: "0.5.34"
33
slug: openclaw_assistant_dev
44
description: Run OpenClaw Assistant (OpenClaw-compatible) as a Home Assistant add-on.
55
url: https://github.com/techartdev/OpenClawHomeAssistant

0 commit comments

Comments
 (0)