Skip to content

Commit

Permalink
Merge pull request #839 from Gregory-Pereira/fix-rag-recipe-tagging-a…
Browse files Browse the repository at this point in the history
…nd-var-names

fix variable naming conventions
  • Loading branch information
rhatdan authored Jan 8, 2025
2 parents 26d4e66 + f0af5e8 commit 52f7c72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/natural_language_processing/rag/bootc/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG RECIPE=rag
ARG MODEL_IMAGE=quay.io/ai-lab/granite-7b-lab:latest
ARG APP_IMAGE=quay.io/ai-lab/${RECIPE}:latest
ARG SERVER_IMAGE=quay.io/ai-lab/llamacpp_python:latest
ARG CHROMADBImage=quay.io/ai-lab/chromadb
ARG CHROMADB_IMAGE=quay.io/ai-lab/chromadb:latest
ARG TARGETARCH

# Add quadlet files to setup system to automatically run AI application on boot
Expand All @@ -43,6 +43,6 @@ VOLUME /var/lib/containers
RUN podman pull --arch=${TARGETARCH} --root /usr/lib/containers/storage ${SERVER_IMAGE}
RUN podman pull --arch=${TARGETARCH} --root /usr/lib/containers/storage ${APP_IMAGE}
RUN podman pull --arch=${TARGETARCH} --root /usr/lib/containers/storage ${MODEL_IMAGE}
RUN podman pull --arch=${TARGETARCH} --root /usr/lib/containers/storage ${CHROMADBImage}
RUN podman pull --arch=${TARGETARCH} --root /usr/lib/containers/storage ${CHROMADB_IMAGE}

RUN podman system reset --force 2>/dev/null

0 comments on commit 52f7c72

Please sign in to comment.