From 247e0cf00b98194a2e3f941644b1a6a46f3cf142 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Mon, 13 Jul 2026 20:26:33 +0000 Subject: [PATCH] fix: allow npm install scripts with --allow-scripts=true MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The node:24-trixie base image has npm configured with a restricted allowScripts list, blocking opencode-ai's postinstall script. Pass --allow-scripts=true to npm install to override this restriction. Fixes: opencode-ai postinstall script was not run → opencode --version fails --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f498dd0..e7bef70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && \ groupadd -g 1000 opencode; \ useradd -m -u 1000 -g 1000 -s /usr/bin/bash opencode; \ npm update -g --no-fund --no-audit && \ - npm install -g --no-fund --no-audit opencode-ai@1.17.13 n2-soul@9.0.9 && \ + npm install -g --no-fund --no-audit --allow-scripts=true opencode-ai@1.17.13 n2-soul@9.0.9 && \ npm cache clean --force && \ chown -R 1000:1000 /usr/local/lib/node_modules/n2-soul/