From de642efd87908f4e23bcb7d8982c3a3e09ddb990 Mon Sep 17 00:00:00 2001 From: Danny Date: Fri, 30 Jan 2026 11:11:00 -0600 Subject: [PATCH] fix: include artifacts directory in Docker image Add COPY artifacts/ to Dockerfile so YAML files are available for RAG indexing when the container starts. Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index add4b14..e04e058 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,9 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY app/ ./app/ +# Copy YAML artifacts for RAG indexing +COPY artifacts/ ./artifacts/ + # Default model (API key must be passed at runtime for security) ENV OPENAI_MODEL=gpt-4o-mini