setup env vars, fix ollama model reference

This commit is contained in:
Ashwin Bharambe 2025-07-31 10:21:06 -07:00
parent 522d62d631
commit 12ea3cb442
4 changed files with 28 additions and 15 deletions

View file

@ -1,13 +0,0 @@
# 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"]