Skip to content

Commit

Permalink
Merge pull request #359 from cooktheryan/README_fix
Browse files Browse the repository at this point in the history
improper variable definition
  • Loading branch information
sallyom authored Apr 28, 2024
2 parents fd9f18f + 7ed9762 commit 33f3db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/natural_language_processing/chatbot/bootc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ cd recipes/natural_language_processing/chatbot
# from requires authentication, then you will need to volume mount the
# auth_json file with SELinux separation disabled.
podman login --auth-file auth.json quay.io/yourrepo
podman build --build-arg "sshpubkey=$(cat ~/.ssh/id_rsa.pub)" \
podman build --build-arg "SSHPUBKEY=$(cat ~/.ssh/id_rsa.pub)" \
--security-opt label=disable \
-v ./auth.json:/run/containers/0/auth.json \
--cap-add SYS_ADMIN \
-t quay.io/yourrepo/youros:tag .

# for GPU powered sample LLM application with llamacpp cuda model server
podman build --build-arg "sshpubkey=$(cat ~/.ssh/id_rsa.pub)" \
podman build --build-arg "SSHPUBKEY=$(cat ~/.ssh/id_rsa.pub)" \
--build-arg "model-server-image="quay.io/ai-lab/llamacpp_python_cuda:latest" \
--from <YOUR BOOTABLE IMAGE WITH NVIDIA/CUDA> \
--cap-add SYS_ADMIN \
Expand Down

0 comments on commit 33f3db3

Please sign in to comment.