From 61347bd322bf7d04fa7ff0b366d0fc4328bde089 Mon Sep 17 00:00:00 2001 From: Byron Saltysiak Date: Wed, 26 Jul 2023 12:37:03 -0500 Subject: [PATCH] giving path to the copy command for *.toml files (#8294) Description: in the .devcontainer, docker-compose build is currently failing due to the src paths in the COPY command. This change adds the full path to the pyproject.toml and poetry.toml to allow the build to run. Issue: You can see the issue if you try to build the dev docker image with: ``` cd .devcontainer docker-compose build ``` Dependencies: none Twitter handle: byronsalty --- libs/langchain/dev.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain/dev.Dockerfile b/libs/langchain/dev.Dockerfile index 3e07a676f1..4c7fc9c21e 100644 --- a/libs/langchain/dev.Dockerfile +++ b/libs/langchain/dev.Dockerfile @@ -35,7 +35,7 @@ FROM langchain-dev-base AS langchain-dev-dependencies ARG PYTHON_VIRTUALENV_HOME # Copy only the dependency files for installation -COPY pyproject.toml poetry.toml ./ +COPY libs/langchain/pyproject.toml libs/langchain/poetry.toml ./ # Copy the langchain library for installation COPY libs/langchain/ libs/langchain/