From 8fa7c4616154cf11ff71751eb34f5cd740391938 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Tue, 29 Oct 2024 19:08:09 +0100 Subject: [PATCH] fix: Add installing of all extras to cognee Dockerfile Added installing of all extras to Dockerfile Fix #COG-457 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ec3dd8119..cec626c86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN pip install poetry RUN poetry config virtualenvs.create false # Install the dependencies -RUN poetry install --no-root --no-dev +RUN poetry install --all-extras --no-root --no-dev # Set the PYTHONPATH environment variable to include the /app directory