From 002b36263422639a57adab0296a51b82a0481975 Mon Sep 17 00:00:00 2001 From: Shotaro Sano Date: Mon, 18 Mar 2024 10:04:11 +0900 Subject: [PATCH] Copy the text-splitters directory in the dev.Dockerfile --- libs/langchain/dev.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/langchain/dev.Dockerfile b/libs/langchain/dev.Dockerfile index c36cc030440f2..696f8fdb0235b 100644 --- a/libs/langchain/dev.Dockerfile +++ b/libs/langchain/dev.Dockerfile @@ -46,5 +46,8 @@ COPY libs/core ../core # Copy the community library for installation COPY libs/community/ ../community/ +# Copy the text-splitters library for installation +COPY libs/text-splitters/ ../text-splitters/ + # Install the Poetry dependencies (this layer will be cached as long as the dependencies don't change) RUN poetry install --no-interaction --no-ansi --with dev,test,docs