1 Commits

Author SHA1 Message Date
Hermes Agent 247e0cf00b fix: allow npm install scripts with --allow-scripts=true
PR Checks / hadolint (pull_request) Successful in 9s
PR Checks / build-test (pull_request) Failing after 1m30s
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
2026-07-13 20:38:13 +00:00
+1 -1
View File
@@ -12,7 +12,7 @@ RUN apt-get update && \
groupadd -g 1000 opencode; \ groupadd -g 1000 opencode; \
useradd -m -u 1000 -g 1000 -s /usr/bin/bash opencode; \ useradd -m -u 1000 -g 1000 -s /usr/bin/bash opencode; \
npm update -g --no-fund --no-audit && \ npm update -g --no-fund --no-audit && \
npm install -g --no-fund --no-audit --allow-scripts=opencode-ai,better-sqlite3 opencode-ai@1.17.18 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 && \ npm cache clean --force && \
chown -R 1000:1000 /usr/local/lib/node_modules/n2-soul/ chown -R 1000:1000 /usr/local/lib/node_modules/n2-soul/