-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.dockerignore
More file actions
158 lines (133 loc) · 2.12 KB
/
.dockerignore
File metadata and controls
158 lines (133 loc) · 2.12 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Git and version control
.git
.gitignore
.gitattributes
# Documentation and examples
*.md
docs/
examples/
!README.md
# CI/CD files (not needed in container)
.github/
.gitlab-ci.yml
.travis.yml
# Dependencies and caches
node_modules/
target/
# Note: Cargo.lock is needed for reproducible Docker builds
# Cargo.lock
# Development and test files
tests/
test_*.sh
*_test.go
*_test.py
*_test.js
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# OS-specific files
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.temp
*.log
*.pid
# Build artifacts and outputs
dist/
build/
out/
*.tar.gz
*.zip
*.deb
*.rpm
# Secrets and configuration
.env
.env.*
secrets/
*.pem
*.key
*.crt
# Large binary assets and media
*.jpg
*.jpeg
*.png
*.gif
*.bmp
*.tiff
*.svg
*.ico
*.mp4
*.avi
*.mov
*.mp3
*.wav
# Database files
*.db
*.sqlite
*.sqlite3
# Backup and cache directories
backup/
.cache/
.cache-*/
# Terraform and infrastructure
*.tf
*.tfstate
.terraform/
# Docker files (don't copy docker into docker)
Dockerfile*
docker-compose*.yml
.dockerignore
# Scripts not needed in container
scripts/
!scripts/install-dependencies.sh
# Local development
local/
.local/
*.local
# Performance profiling
*.prof
*.pprof
perf.data
# Linter and formatter caches
.cargo/
.rustup/
.node_repl_history
# Rust-specific
rust-toolchain
**/*.rs.bk
# Note: Cargo.lock is needed for reproducible builds in Docker
# Cargo.lock
# WASM specific
wasm-pack.log
pkg/
*.wasm.map
# Tauri specific
src-tauri/target/
src-tauri/Cargo.lock
# Desktop frontend
# Note: src/ and public/ are needed for frontend builds in Docker
# desktop/src/
# desktop/public/
!desktop/dist/
desktop/node_modules/
desktop/.svelte-kit/
desktop/package-lock.json
# Note: yarn.lock is needed for reproducible builds
# desktop/yarn.lock
# Exclude temporary directories from workflows
.github/workflows/backup/
# Keep essential rust configuration
!rust-toolchain.toml
!.github/rust-toolchain.toml
# Exclude crates with private git dependencies (firecracker)
crates/terraphim_rlm/
crates/terraphim_github_runner/
crates/terraphim_github_runner_server/
terraphim_firecracker/*
!terraphim_firecracker/Cargo.toml