Include AI dependencies in Docker image

This commit is contained in:
2026-01-16 19:39:56 +01:00
parent d093dd7c6d
commit 185deb5df4

View File

@@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
COPY pyproject.toml README.md ./ COPY pyproject.toml README.md ./
COPY src/ ./src/ COPY src/ ./src/
# Install Python dependencies # Install Python dependencies (including AI packages)
RUN pip install --no-cache-dir . RUN pip install --no-cache-dir ".[ai]"
# Copy remaining files # Copy remaining files
COPY migrations/ ./migrations/ COPY migrations/ ./migrations/