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 <noreply@anthropic.com>
This commit is contained in:
Danny 2026-01-30 11:11:00 -06:00
parent 2f172ddaf9
commit de642efd87
1 changed files with 3 additions and 0 deletions

View File

@ -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