From adfe8d71873284c4ef348ec9789d3644c9024a32 Mon Sep 17 00:00:00 2001 From: TheLast Date: Tue, 27 Jan 2026 13:26:36 +0200 Subject: [PATCH] Fix HA add-on: require Node.js 20+ (use nodejs-current) --- papur-addon/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/papur-addon/Dockerfile b/papur-addon/Dockerfile index 7595efe..a5df85e 100644 --- a/papur-addon/Dockerfile +++ b/papur-addon/Dockerfile @@ -1,9 +1,10 @@ ARG BUILD_FROM=ghcr.io/hassio-addons/base:14.0.2 FROM ${BUILD_FROM} -# Base image is Alpine. Install node + git so we can install clawdbot. +# Base image is Alpine. Install Node.js 20+ + git so we can install clawdbot. +# On HA base images, `nodejs` may be 18.x; use `nodejs-current` for 20+. RUN apk add --no-cache \ - nodejs \ + nodejs-current \ npm \ git \ bash \