Skip to content

Commit

Permalink
fix variable naming conventions
Browse files Browse the repository at this point in the history
Signed-off-by: greg pereira <[email protected]>
  • Loading branch information
Gregory-Pereira committed Jan 7, 2025
1 parent 26d4e66 commit f0af5e8
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 f0af5e8

Please sign in to comment.