mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-24 11:10:03 +00:00
feat(ci): add support for running vision inference tests
This commit is contained in:
parent
d6ae2b0f47
commit
0b02af792d
4 changed files with 227 additions and 0 deletions
13
tests/VisionContainerfile
Normal file
13
tests/VisionContainerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Containerfile used to build our all in one ollama image to run tests in CI
|
||||
# podman build --platform linux/amd64 -f VisionContainerfile -t ollama-with-vision-model .
|
||||
#
|
||||
FROM --platform=linux/amd64 ollama/ollama:latest
|
||||
|
||||
# Start ollama and pull models in a single layer
|
||||
RUN ollama serve & \
|
||||
sleep 5 && \
|
||||
ollama pull llama3.2-vision:11b && \
|
||||
ollama pull all-minilm:l6-v2
|
||||
|
||||
# Set the entrypoint to start ollama serve
|
||||
ENTRYPOINT ["ollama", "serve"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue