fix(docker): use lockfile install for vendored Ink deps

This commit is contained in:
Brooklyn Nicholson
2026-04-27 15:39:43 -05:00
parent 7ada40e686
commit 2b81827dc0
2 changed files with 4 additions and 1 deletions

View File

@@ -131,7 +131,9 @@ def test_dockerfile_materializes_local_tui_ink_package(dockerfile_text):
and "node_modules/@hermes/ink" in step
and "packages/hermes-ink" in step
and "rm -rf packages/hermes-ink/node_modules" in step
and "npm ci --omit=dev" in step
and "--prefix node_modules/@hermes/ink" in step
and "rm -rf packages/hermes-ink" in step
and "await import('@hermes/ink')" in step
for step in _run_steps(dockerfile_text)
)