From 73552883c370b72b109910dcb4a85bdea786af90 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Mon, 7 Jul 2025 11:20:57 +1000 Subject: [PATCH] cli: fix dockerfile incorrect copy (#31883) --- libs/cli/langchain_cli/project_template/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/cli/langchain_cli/project_template/Dockerfile b/libs/cli/langchain_cli/project_template/Dockerfile index bbdeea13b65..a129cd0b50a 100644 --- a/libs/cli/langchain_cli/project_template/Dockerfile +++ b/libs/cli/langchain_cli/project_template/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /code COPY ./pyproject.toml ./README.md ./poetry.lock* ./ -COPY ./package[s] ./packages +COPY ./packages ./packages RUN poetry install --no-interaction --no-ansi --no-root