From 8df5772178508ae11fee04659385a60ac8f5d432 Mon Sep 17 00:00:00 2001 From: Viginum-DataScientist-6 <210390336+Viginum-DataScientist-6@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:30:11 +0000 Subject: [PATCH] fix(devcontainer): reflect updates to pyproject.toml in #22 --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 887d576..858324a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -17,7 +17,7 @@ RUN pip install --no-cache-dir --upgrade pip RUN pipx install poetry==${POETRY_VERSION} WORKDIR /app -COPY pyproject.toml poetry.lock setup.py README.md ./ +COPY pyproject.toml poetry.lock README.md LICENSE.txt ./ # pre-install dependencies RUN --mount=type=cache,target=/root/.cache poetry install --no-root