From 0ea429c163a87c34e835fd947bebcb3efba34621 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 2 Jun 2025 17:53:57 -0700 Subject: [PATCH] fix --- docs/source/distributions/k8s/ui-k8s.yaml.template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/distributions/k8s/ui-k8s.yaml.template b/docs/source/distributions/k8s/ui-k8s.yaml.template index 79a094d42..a87de4bf2 100644 --- a/docs/source/distributions/k8s/ui-k8s.yaml.template +++ b/docs/source/distributions/k8s/ui-k8s.yaml.template @@ -31,26 +31,26 @@ spec: - | # Install git (not included in alpine by default) apk add --no-cache git - + # Clone the repository echo "Cloning repository..." git clone https://github.com/meta-llama/llama-stack.git /app - + # Navigate to the UI directory echo "Navigating to UI directory..." cd /app/llama_stack/ui - + # Check if package.json exists if [ ! -f "package.json" ]; then echo "ERROR: package.json not found in $(pwd)" ls -la exit 1 fi - + # Install dependencies with verbose output echo "Installing dependencies..." npm install --verbose - + # Verify next is installed echo "Checking if next is installed..." npx next --version || echo "Next.js not found, checking node_modules..."