yuvis commited on
Commit
2a3a1de
·
verified ·
1 Parent(s): 3943bdc

Upload .dockerignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .dockerignore +56 -0
.dockerignore ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+ .Python
7
+
8
+ # Virtual Environment
9
+ venv/
10
+ env/
11
+ ENV/
12
+ .venv
13
+
14
+ # Environment Variables
15
+ .env
16
+ .env.local
17
+
18
+ # Data directories (generated at runtime)
19
+ data/raw/
20
+ data/index/
21
+ data/db/
22
+ data/processed/
23
+
24
+ # IDE
25
+ .vscode/
26
+ .idea/
27
+ *.swp
28
+ *.swo
29
+ *~
30
+
31
+ # OS
32
+ .DS_Store
33
+ Thumbs.db
34
+
35
+ # Git
36
+ .git/
37
+ .gitignore
38
+
39
+ # Testing
40
+ .pytest_cache/
41
+ .coverage
42
+ htmlcov/
43
+
44
+ # Documentation (not needed in container)
45
+ docs/
46
+ *.md
47
+ !README.md
48
+
49
+ # Notebooks
50
+ notebooks/
51
+ *.ipynb
52
+
53
+ # Build artifacts
54
+ dist/
55
+ build/
56
+ *.egg-info/