From d5e1725ace3b2e69d742bb0cc867f1167f692edb Mon Sep 17 00:00:00 2001 From: Christopher Queen Date: Thu, 28 Dec 2023 11:25:03 -0500 Subject: [PATCH] langchain: Fix for issue #14631 - .devcontainer doesnt build (#15251) - **Description:** Fix for issue #14631 - **Issue:** This fixes [Issue #14631](https://github.com/langchain-ai/langchain/issues/14631) - **Twitter handle:** [@consultchrisq ](https://twitter.com/consultchrisq?lang=en) --- libs/langchain/dev.Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libs/langchain/dev.Dockerfile b/libs/langchain/dev.Dockerfile index 4c7fc9c21e..c36cc03044 100644 --- a/libs/langchain/dev.Dockerfile +++ b/libs/langchain/dev.Dockerfile @@ -40,5 +40,11 @@ COPY libs/langchain/pyproject.toml libs/langchain/poetry.toml ./ # Copy the langchain library for installation COPY libs/langchain/ libs/langchain/ +# Copy the core library for installation +COPY libs/core ../core + +# Copy the community library for installation +COPY libs/community/ ../community/ + # 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 \ No newline at end of file +RUN poetry install --no-interaction --no-ansi --with dev,test,docs