-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
52 lines (46 loc) · 921 Bytes
/
Copy path.dockerignore
File metadata and controls
52 lines (46 loc) · 921 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
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
# SkyGuide AI — files that must never enter a build context / image.
# Mirrors .gitignore, but this one also guards against files that exist on a
# developer machine and would otherwise be COPY'd in even though git ignores them.
# --- Secrets (highest priority) ---
.env
.env.*
!.env.example
**/.env
**/.env.*
!**/.env.example
# --- Internal-only material (architecture, roadmap, presentation, dev journal) ---
_local/
.claude/
CLAUDE.md
# --- VCS / tooling ---
.git
.gitignore
.mcp.json
.runtime/
.vscode/
.idea/
# --- Dependencies & build output (reinstalled/rebuilt inside the image) ---
node_modules
**/node_modules
venv/
.venv/
**/__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
dist/
build/
coverage/
.cache/
# --- Runtime caches regenerated on demand ---
astro-engine/data/*.tle
astro-engine/data/openngc.csv
astro-engine/data/wiki_cache/
# --- Noise ---
*.log
logs/
tmp/
temp/
*.tmp
.DS_Store
Thumbs.db