From 185deb5df42ae7fc3a0aafd9b39b15b190968b9b Mon Sep 17 00:00:00 2001 From: latte Date: Fri, 16 Jan 2026 19:39:56 +0100 Subject: [PATCH] Include AI dependencies in Docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c91a270..8157b05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ COPY pyproject.toml README.md ./ COPY src/ ./src/ -# Install Python dependencies -RUN pip install --no-cache-dir . +# Install Python dependencies (including AI packages) +RUN pip install --no-cache-dir ".[ai]" # Copy remaining files COPY migrations/ ./migrations/