rajvivan commited on
Commit
65d455f
·
verified ·
1 Parent(s): ae84ddd

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +39 -0
.dockerignore ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyc
5
+ .env
6
+ *.env
7
+
8
+ # Node
9
+ frontend/node_modules/
10
+ node_modules/
11
+
12
+ # Git
13
+ .git/
14
+ .gitignore
15
+
16
+ # Dev tools
17
+ .venv/
18
+ venv/
19
+ .pytest_cache/
20
+ .ipynb_checkpoints/
21
+
22
+ # Large model weights / data
23
+ *.bin
24
+ *.pt
25
+ *.ckpt
26
+ *.safetensors
27
+ *.h5
28
+ data/raw/*
29
+ data/interim/*
30
+ data/processed/*
31
+
32
+ # Kaggle credentials
33
+ kaggle.json
34
+ ~/.kaggle/
35
+
36
+ # Docs / notebooks (not needed in container)
37
+ docs/
38
+ notebooks/
39
+ tests/