From f0af5e879024dabfef269d504a551b9a6578e01c Mon Sep 17 00:00:00 2001 From: greg pereira Date: Tue, 7 Jan 2025 14:35:34 -0800 Subject: [PATCH] fix variable naming conventions Signed-off-by: greg pereira --- recipes/natural_language_processing/rag/bootc/Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/natural_language_processing/rag/bootc/Containerfile b/recipes/natural_language_processing/rag/bootc/Containerfile index 021be3d2..02ca1385 100644 --- a/recipes/natural_language_processing/rag/bootc/Containerfile +++ b/recipes/natural_language_processing/rag/bootc/Containerfile @@ -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 @@ -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