Skip to content

Commit 0013a26

Browse files
committed
fix: 添加根目录 .dockerignore 文件
1 parent 694adfb commit 0013a26

1 file changed

Lines changed: 106 additions & 0 deletions

File tree

.dockerignore

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
MANIFEST
23+
24+
# Virtual environments
25+
venv/
26+
venv_wsl/
27+
ENV/
28+
env/
29+
conda_env/
30+
Miniconda3/
31+
32+
# IDE
33+
.vscode/
34+
.idea/
35+
.kiro/
36+
.claude/
37+
*.swp
38+
*.swo
39+
*~
40+
41+
# Git
42+
.git/
43+
.gitignore
44+
.gitattributes
45+
46+
# Docker
47+
Dockerfile
48+
.dockerignore
49+
docker-compose.yml
50+
51+
# Build artifacts
52+
packaging/build/
53+
packaging/dist/
54+
*.spec
55+
56+
# Logs
57+
logs/
58+
*.log
59+
60+
# Test files
61+
test/
62+
tests/
63+
*.test.py
64+
65+
# Documentation
66+
doc/
67+
*.md
68+
!README.md
69+
70+
# Examples (keep config files)
71+
examples/*.jpg
72+
examples/*.png
73+
examples/*.webp
74+
75+
# Results and uploads
76+
result/
77+
upload-cache/
78+
uploads/
79+
originals/
80+
memory_profiles/
81+
82+
# Models (will be downloaded at runtime)
83+
models/*
84+
!models/.gitkeep
85+
86+
# Temporary files
87+
*.tmp
88+
*.bak
89+
*.swp
90+
.DS_Store
91+
Thumbs.db
92+
93+
# Windows batch files
94+
*.bat
95+
96+
# Other projects
97+
ailab-main/
98+
BallonsTranslator-dev/
99+
manga-image-translator-rust-master/
100+
manga-translator-ui-1.7.6/
101+
manga_decrypt/
102+
pydensecrf/
103+
resources (1)/
104+
105+
# Wheels
106+
*.whl

0 commit comments

Comments
 (0)