forked from Video-Reason/VBVR-EvalKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
78 lines (65 loc) · 1.28 KB
/
.dockerignore
File metadata and controls
78 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
.git
.gitignore
.DS_Store
*.pyc
__pycache__/
.pytest_cache/
*.sqlite3
# Virtual envs / local python env
.venv/
venv/
ENV/
env/
# Local IDE/editor files
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Data, outputs, and generated artifacts (large)
data/outputs/
data/scorings/
data/videos/
data/*.sqlite3
# Questions dataset and large generated files (optionally include if you want them in image)
# If you want to include a small sample, move it to a subfolder not ignored.
data/questions/
# Weights and checkpoints - keep out of image, mount as volume instead
weights/
**/weights/
**/checkpoints/
**/ckpts/
**/ckpt/
**/models/
# HuggingFace / Torch caches (mount host .cache instead)
.cache/
workspace/.cache/
**/.cache/
# Submodule large artifacts (avoid shipping models inside submodules)
submodules/**/checkpoints/
submodules/**/ckpts/
submodules/**/weights/
# Notebook checkpoints and outputs
.ipynb_checkpoints
*.ipynb
# Logs and temp files
logs/
*.log
tmp/
*.tmp
# Docker files we don't want copied into context (if any)
Dockerfile.enhanced
# Node modules (not used but safe to ignore)
node_modules/
# Other large files
*.tar
*.tar.gz
*.zip
*.pth
*.safetensors
# Keep README, code, requirements and Dockerfile
!README.md
!requirements.txt
!Dockerfile
!examples/**
!vmevalkit/**
!.env