Skip to content

Commit 5eedb89

Browse files
authored
fix(docker): remove deleted documents/examples copy, add presets (#48)
* fix(docker): remove deleted documents/examples copy, add presets The cleanup PR removed documents/examples/ but the Dockerfile still COPY''d that path, breaking the v3.9.0 release Docker build with: failed to calculate checksum of ref ...: "/documents/examples": not found Drop the obsolete COPY and instead include presets/ and config.example.yaml so users running the official Docker image get the same out-of-the-box defaults as PyPI / NPM users. * ci: refresh PR labels --------- Co-authored-by: Lyonzin <lyonzin@users.noreply.github.com>
1 parent 2682a8c commit 5eedb89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ WORKDIR /app
88

99
COPY pyproject.toml requirements.txt ./
1010
COPY mcp_server/ ./mcp_server/
11-
COPY documents/examples/ ./documents/examples/
12-
COPY LICENSE README.md ./
11+
COPY presets/ ./presets/
12+
COPY config.example.yaml LICENSE README.md ./
1313

1414
RUN pip install --no-cache-dir -r requirements.txt
1515

0 commit comments

Comments
 (0)