Fix missing llama-server binary causing "binary not found" error#13
Open
IvanBrazza wants to merge 1 commit into
Open
Fix missing llama-server binary causing "binary not found" error#13IvanBrazza wants to merge 1 commit into
IvanBrazza wants to merge 1 commit into
Conversation
Ollama 0.30+ moved inference out-of-process into a standalone llama-server binary plus supporting shared libraries (libllama-server-impl.so, libllama.so, libmtmd.so, etc.), all installed together under /usr/lib/ollama/. This Dockerfile only ever copied libggml-cpu-* and libggml-base.so, so llama-server was never present in the built image, breaking every model run. Copy the whole /usr/lib/ollama directory instead of hand-picking files, and prune the GPU backend subdirs (cuda_v*, rocm_v*, vulkan, cuda_jetpack*) in a separate build stage so the deleted GPU bytes never end up in the final image's layers. Verified the rebuilt image stays close to the original ~85MB size and successfully serves a model end-to-end. Fixes alpine-docker#12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
llama-serverbinary plus supporting shared libraries (libllama-server-impl.so,libllama.so,libmtmd.so, etc.), all installed together under/usr/lib/ollama/. This Dockerfile only ever copiedlibggml-cpu-*andlibggml-base.so, sollama-serverwas never present in the built image, breaking every model run withllama-server binary not found./usr/lib/ollamadirectory instead of hand-picking files, and prune the GPU backend subdirs (cuda_v*,rocm_v*,vulkan,cuda_jetpack*) in a separate build stage so the deleted GPU bytes never end up in the final image's layers (a naiverm -rfin the final stage bloats the image to several GB due to layer history).Fixes #12
Test plan
/usr/lib/ollamacontainsllama-serverand all its dependent.sofilesnomic-embed-text, and ranollama run nomic-embed-text helloworld— got a real embedding back (previously failed with the binary-not-found error)🤖 Generated with Claude Code