Skip to content

Commit 5cb38be

Browse files
fix(docker): add missing README.md to COPY and fix install paths
Both Dockerfiles failed because pyproject.toml references readme = 'README.md' but the file wasn't copied into the build context. Changes: - agent-mesh/Dockerfile: add COPY README.md, remove -e editable install - Dockerfile.sidecar: fix COPY paths for repo-root context, add README.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a0bfee7 commit 5cb38be

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/agent-mesh/docker/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
3232

3333
# Copy package source from repo root context
3434
COPY packages/agent-mesh/pyproject.toml ./
35+
COPY packages/agent-mesh/README.md ./
3536
COPY packages/agent-mesh/src/ ./src/
3637

3738
# Install the package with server extras (fastapi + uvicorn)

packages/agent-os/Dockerfile.sidecar

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ WORKDIR /app
1515

1616
# Copy agent-os package source (context is repo root)
1717
COPY packages/agent-os/pyproject.toml ./
18+
COPY packages/agent-os/README.md ./
1819
COPY packages/agent-os/src/ ./src/
1920
COPY packages/agent-os/modules/ ./modules/
2021

0 commit comments

Comments
 (0)