-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
25 lines (22 loc) · 848 Bytes
/
Copy path.dockerignore
File metadata and controls
25 lines (22 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
target/
**/target/
.git/
**/.git/
# Workspace per-crate caches (control_plane/target, data_plane/target,
# benchmarks/.../target) that aren't covered by the top-level `target/`
# pattern. Excluding them shrinks the BuildKit context transfer for the
# image builds (`docker build -f data_plane/Dockerfile` and
# `-f control_plane/Dockerfile`, each `COPY . ASAPQuery-backend`) from
# multi-GB (every host-side cargo build leaves a few-hundred-MB target
# there) back down to the source-only size the in-container build needs.
# Editor + tooling state
.idea/
.vscode/
*.swp
# Claude agent worktrees (~125 GB; source minus target/.git still ~230 MB).
# The image build never needs the agent worktrees — keep them out of the
# BuildKit context entirely.
.claude/
**/.claude/
# CI / eval artifacts that occasionally land in subdirs
**/eval-results/