forked from Yeachan-Heo/gajae-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.robogjc.dockerignore
More file actions
83 lines (73 loc) · 1.79 KB
/
Copy pathDockerfile.robogjc.dockerignore
File metadata and controls
83 lines (73 loc) · 1.79 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
80
81
82
83
# Build context for `Dockerfile.robogjc` (robogjc:dev). Shadows .dockerignore
# for this file only — the pi-root build uses Dockerfile.dockerignore instead.
#
# Note: this duplicates most of the entries in Dockerfile.dockerignore. That's
# the cost of per-Dockerfile shadows (no shared file to factor common rules
# into). Keep them roughly in sync.
# Heavy build outputs — must never reach the build context.
target/
**/node_modules
dist/
runs/
# Per-host scratch the pi codebase uses for parallel agents / worktrees.
.fallow/
.worktrees/
.wt/
.opencode/
.pi_config/
.gjc/plugins/
# VCS, editors, IDEs.
.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/
packages/natives/native/pi_natives.darwin-*.node
packages/natives/native/pi_natives.dev.node
packages/ai/test/.temp-images/
python/gjc-rpc/src/gjc_rpc.egg-info/
python/robogjc/data/
python/robogjc/.cache/
python/robogjc/src/robogjc/static/
python/robogjc/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
# Robogjc-only excludes. Natives + wheel + python + bun + rustup all come
# from PI_BASE; the web-builder stage only needs root manifests + the
# python/robogjc/web tree; the runtime stage only COPYs python/robogjc/
# pyproject + src + entrypoint. Everything below is dead weight in the
# robogjc build context.
crates/
docs/
assets/
scripts/
LICENSE
AGENTS.md
README.md