From ba2d57b6802795aa69fd1b5c58aaca9a0552b0a6 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 9 Apr 2024 14:31:18 -0400 Subject: [PATCH] Revert "bug: Fix broken path in chatbot/bootc/Containerfile" Quadlet files must be created in the build directory and copied from there. The IMAGE Names can be changed via make commands by the user. This reverts commit 96cc90898b4f3630bef7c6d0e2cf9480b0acd5f7. Signed-off-by: Daniel J Walsh --- .../natural_language_processing/chatbot/bootc/Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/natural_language_processing/chatbot/bootc/Containerfile b/recipes/natural_language_processing/chatbot/bootc/Containerfile index ec43a686..cede41ba 100644 --- a/recipes/natural_language_processing/chatbot/bootc/Containerfile +++ b/recipes/natural_language_processing/chatbot/bootc/Containerfile @@ -19,12 +19,12 @@ ARG APP_IMAGE=quay.io/ai-lab/${RECIPE}:latest ARG SERVER_IMAGE=quay.io/ai-lab/llamacpp-python:latest # Add quadlet files to setup system to automatically run AI application on boot -COPY quadlet/${RECIPE}.kube quadlet/${RECIPE}.yaml /usr/share/containers/systemd +COPY build/${RECIPE}.kube build/${RECIPE}.yaml /usr/share/containers/systemd # Because images are prepulled, no need for .image quadlet # If commenting out the pulls below, uncomment this to track the images # so the systemd service will wait for the images with the service startup -# COPY quadlet/${RECIPE}.image /usr/share/containers/systemd +# COPY build/${RECIPE}.image /usr/share/containers/systemd # Setup /usr/lib/containers/storage as an additional store for images. # Remove once the base images have this set by default.