-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy path.dockerignore
More file actions
77 lines (61 loc) · 881 Bytes
/
.dockerignore
File metadata and controls
77 lines (61 loc) · 881 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
# Docker ignore file for RClone Manager
# This prevents unnecessary files from being sent to Docker build context
# Node modules
node_modules/
npm-debug.log*
# Build outputs
dist/
.angular/
target/
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Git
.git/
.gitignore
.gitattributes
# Documentation
*.md
docs/
# Test files
*.spec.ts
*.test.ts
e2e/
cypress/
# Environment files (keep these local)
.env
.env.local
.env.*.local
# Temporary files
tmp/
temp/
*.tmp
# Logs
logs/
*.log
# Cache
.cache/
.npm/
.eslintcache
# CI/CD
.github/
.gitlab-ci.yml
azure-pipelines.yml
# Package manager files
yarn.lock
pnpm-lock.yaml
# Rust debug builds (we only need release)
# Rust build artifacts (all of them)
src-tauri/target/
# Tauri specific
src-tauri/gen/
# Docker files (don't include in build context)
Dockerfile
docker-compose*.yml
.dockerignore