From b66287748a4375b985c9396d9514c04758c5a4c9 Mon Sep 17 00:00:00 2001 From: Vicente Date: Tue, 1 Sep 2026 03:41:17 -0700 Subject: [PATCH] docs: the Dockerfile's own verify command works again MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The header said `docker run --rm opspilot:latest opspilot --version`, which predates the `opspilot` ENTRYPOINT — copied verbatim it errors with "No such command 'opspilot'". Found while verifying the image builds and runs against lancedb 0.38 (the last untested surface of #215/#216: build succeeds, --version runs, and an in-image merge_insert + cosine-search roundtrip passes). Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01KXrF6HMB12V1hC9xFtooDE --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bb691cf..e7cf880 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # Runtime stage: slim image with just the package + runtime deps. # # Build: docker build -t opspilot:latest . -# Verify: docker run --rm opspilot:latest opspilot --version +# Verify: docker run --rm opspilot:latest --version (entrypoint is `opspilot`) # CI: pair with `make OLLAMA_MODE=docker ollama-up` for a fully # containerised PR-8 golden run.