返回 DeepSeek-TUI-2026
.dockerignore
根目录 / .dockerignore
1 # Build artifacts
2 /target/
3 *.pdb
4 *.dll
5 *.so
6 *.dylib
7 *.rlib
8
9 # Sensitive environment files
10 .env
11 .env.*
12
13 # Development
14 /node_modules/
15 /.vscode/
16 /.idea/
17 *.swp
18 *.swo
19 *~
20 .DS_Store
21
22 # Git
23 /.git/
24 /.gitignore
25 /.gitattributes
26
27 # CI/CD
28 /.github/
29
30 # Python
31 __pycache__/
32 *.py[cod]
33 .pytest_cache/
34 venv/
35 .venv/
36
37 # Logs
38 *.log
39
40 # Generated
41 /outputs/
42 /tmp/
43
44 # Local runtime state
45 /.deepseek/
46
47 # Claude Code artifacts
48 /.claude/
49 /.ace-tool/
50
51 # Documentation (not needed at runtime)
52 /docs/
53 /website/
54 /*.md
55 !/README.md
56
57 # Assets (screenshots, etc.)
58 /assets/
59
60 # Scripts
61 /scripts/
62
63 # Development configs
64 /.devcontainer/
65 /config.example.toml
66
66 lines Plain Text