forked from xtclang/xvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
88 lines (75 loc) · 1008 Bytes
/
.dockerignore
File metadata and controls
88 lines (75 loc) · 1008 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
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
84
85
86
87
88
# Build outputs and caches
build/
out/
classes/
.gradle/
gradle-user-home/
profile-out/
.kotlin/
# IDE and editor files
.idea/
*.iml
*.ipr
*.iws
.vscode/
*.swp
*~
.DS_Store
# Git and version control
.git/
.gitignore
.gitattributes
# Documentation and non-essential files
doc/
docs/
README.md
*.md
!CLAUDE.md
# Test and development files
test/
tests/
**/test/
**/tests/
# Temporary and log files
*.log
*.tmp
*.temp
*.old
*.new
*.bak
*.backup
# OS files
Thumbs.db
ehthumbs.db
.DS_Store?
._*
.Spotlight-V100
.Trashes
# Development tools and configs
.editorconfig
.secrets
TODO
# CI/CD files (not needed in container)
.github/
.gitlab-ci.yml
Jenkinsfile
# Package files (will be downloaded in container)
*.zip
*.tar.gz
*.tgz
*.7z
*.rar
# Large binary files that shouldn't be in Docker context
*.iso
*.dmg
*.exe
*.msi
# Node modules if present
node_modules/
# Python cache if present
__pycache__/
*.pyc
*.pyo
# Keep only essential files for Docker build
# Scripts directory is needed
!docker/scripts/