7 Commits

Author SHA1 Message Date
renovate cc86526f47 chore(deps): update node docker tag to v26
PR Checks / hadolint (pull_request) Successful in 7s
PR Checks / build-test (pull_request) Failing after 2m21s
2026-07-13 19:09:26 -04:00
jcabillot 9db78dcce5 Merge pull request 'chore(deps): update dependency opencode-ai to v1.17.18' (#23) from renovate/opencode-ai-1.x into main
Main Release / hadolint (push) Successful in 6s
Main Release / test (push) Successful in 3m13s
Main Release / build (push) Successful in 13s
Main Release / tag (push) Successful in 9s
Tag Release / hadolint (push) Successful in 6s
Tag Release / test (push) Successful in 11s
Tag Release / build-push (push) Successful in 4m45s
Reviewed-on: #23
2026-07-13 18:28:33 -04:00
renovate cb3f2e06a8 chore(deps): update dependency opencode-ai to v1.17.18
renovate/stability-days Updates have met minimum release age requirement
PR Checks / hadolint (pull_request) Successful in 8s
PR Checks / build-test (pull_request) Successful in 3m42s
2026-07-13 22:23:47 +00:00
jcabillot f72c3513d4 Merge pull request 'fix: run opencode-ai postinstall script after npm install' (#24) from fix/opencode-postinstall into main
Main Release / hadolint (push) Successful in 6s
Main Release / test (push) Successful in 12s
Main Release / build (push) Successful in 11s
Main Release / tag (push) Successful in 9s
Tag Release / hadolint (push) Successful in 7s
Tag Release / test (push) Successful in 3m9s
Tag Release / build-push (push) Successful in 4m25s
Reviewed-on: #24
2026-07-13 18:17:39 -04:00
Hermes Agent 7dc7c4a043 fix: pass --allow-scripts to npm install for blocked postinstall
PR Checks / hadolint (pull_request) Successful in 5s
PR Checks / build-test (pull_request) Successful in 3m7s
The node:24-trixie base image has npm configured with a restricted
allowScripts list, preventing opencode-ai's postinstall from running.
Pass --allow-scripts=opencode-ai,better-sqlite3 to npm install -g to
explicitly allow these packages to run their install scripts.

This is the npm-recommended fix as shown in the npm warning message.
2026-07-13 20:52:32 +00:00
jcabillot 5fc43f11fc Merge pull request 'chore(deps): update dependency opencode-ai to v1.17.13' (#22) from renovate/opencode-ai-1.x into main
Main Release / test (push) Successful in 15s
Main Release / build (push) Successful in 3m32s
Main Release / hadolint (push) Failing after 13m19s
Main Release / tag (push) Successful in 11s
Tag Release / hadolint (push) Successful in 10s
Tag Release / test (push) Successful in 3m44s
Tag Release / build-push (push) Successful in 4m22s
Reviewed-on: #22
2026-07-06 15:09:19 -04:00
renovate ed90366d5f chore(deps): update dependency opencode-ai to v1.17.13
renovate/stability-days Updates have met minimum release age requirement
PR Checks / hadolint (pull_request) Successful in 7s
PR Checks / build-test (pull_request) Successful in 3m22s
2026-07-06 19:06:04 +00:00
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node:24-trixie FROM node:26-trixie
ENV NPM_CONFIG_UPDATE_NOTIFIER=false \ ENV NPM_CONFIG_UPDATE_NOTIFIER=false \
NPM_CONFIG_LOGLEVEL=warn \ NPM_CONFIG_LOGLEVEL=warn \
@@ -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 opencode-ai@1.16.2 n2-soul@9.0.9 && \ npm install -g --no-fund --no-audit --allow-scripts=opencode-ai,better-sqlite3 opencode-ai@1.17.18 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/