-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathDockerfile.dockerignore
More file actions
79 lines (70 loc) · 1.86 KB
/
Copy pathDockerfile.dockerignore
File metadata and controls
79 lines (70 loc) · 1.86 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Build context for the pi-root `Dockerfile` (oh-my-pi/pi:dev). Shadows
# .dockerignore for this file only. Robomp uses Dockerfile.robomp +
# Dockerfile.robomp.dockerignore alongside.
# Heavy build outputs — must never reach the build context. Patterns are
# depth-agnostic (`**/`) to match .gitignore semantics: dockerignore anchors
# bare `target/`/`dist/` at the context root only, which leaked
# packages/*/dist (~600 MB) and go-port/*/target (~1.4 GB) into every build.
# `bazel-*` symlinks point at the bazel output base.
**/target/
bazel-*
**/node_modules
**/dist/
runs/
.xwin-cache/
packages/coding-agent/binaries/
packages/natives/npm/
**/.cache/
packages/snapcompact/research/results/
# Per-host scratch the pi codebase uses for parallel agents / worktrees.
.fallow/
.worktrees/
.wt/
.opencode/
.pi_config/
.omp/plugins/
# VCS, editors, IDEs — irrelevant to the build, churn on every IDE keystroke.
.git/
.npm/
.vscode/
.zed/
.idea/
# OS + transient noise.
.DS_Store
*.swp
*.swo
*~
*.tmp
# Logs + profiling artifacts.
*.log
*.cpuprofile
*.heapprofile
*.heapsnapshot
CPU.*
# Build / test side outputs.
**/*.tsbuildinfo
**/coverage/
.nyc_output/
**/__pycache__/
compaction-results/
changes/
# Generated files (the in-image build regenerates them).
packages/coding-agent/src/internal-urls/docs-index.generated.ts
packages/natives/native/.build/
# Every host-built addon: natives-builder compiles its own, and a stale host
# `pi_natives.linux-*.node` riding in would be copied to /out alongside it.
# (Also drops the ~760 MB of dev addons a working checkout accumulates.)
**/*.node
packages/ai/test/.temp-images/
python/omp-rpc/src/omp_rpc.egg-info/
python/robomp/data/
python/robomp/.cache/
python/robomp/src/robomp/static/
python/robomp/web/dist/
# Scratch files the repo creates ad-hoc.
syntax.jsonl
out.jsonl
out.html
pi-*.html
# Secrets. Should never be in the image regardless.
.env