shank commited on
Commit
c945597
·
1 Parent(s): 663b8db

Add dockerignore to reduce Space build context

Browse files
Files changed (1) hide show
  1. .dockerignore +25 -0
.dockerignore ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .git
2
+ .gitignore
3
+ .DS_Store
4
+ .venv
5
+ .pytest_cache
6
+ __pycache__
7
+ *.pyc
8
+ *.pyo
9
+ *.pyd
10
+
11
+ # Local artifacts / logs
12
+ wandb
13
+ checkpoints
14
+ final_model
15
+ *.log
16
+
17
+ # Build and packaging metadata
18
+ *.egg-info
19
+ dist
20
+ build
21
+
22
+ # Editor / tooling
23
+ .cursor
24
+ .vscode
25
+