-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.dockerignore
More file actions
80 lines (65 loc) · 1.28 KB
/
.dockerignore
File metadata and controls
80 lines (65 loc) · 1.28 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
# Git files
.git
.gitignore
# Docker related files
Dockerfile
.dockerignore
docker-compose.yml
# Tilt file
Tiltfile
# Rust build artifacts
target_ide/
target/
**/target/
# Cargo lock files - let Docker resolve its own deps to avoid stale git revision hashes
Cargo.lock
**/Cargo.lock
# Node.js dependencies (assuming they are installed within the container or managed differently)
node_modules/
**/node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Tauri build artifacts (often within src-tauri/target)
src-tauri/target/
src-tauri/gen/
src-tauri/node_modules/
# General build/dist folders (add specific ones if you use them)
dist/
build/
out/
# Logs
*.log
logs/
*.log.*
# OS-specific files
.DS_Store
Thumbs.db
# Editor/IDE specific files
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Environment files (if sensitive or managed outside image)
.env
.env.*
!/.env.example # Keep example files if they exist
# Temporary files
*.tmp
*.swp
*~
# Test reports (if generated)
coverage/
junit.xml
# Specific workspace files (add if necessary)
.service-pid
.server-pid
internal-service.log
citadel-server.log
# UI directories - NOTE: citadel-workspaces is needed for UI container build
# citadel-workspaces/
# citadel-workspace-client-ts/
# wasm-client-ts/
test_*.html
test_*.js
.claude