itsjarvis commited on
Commit
7adc589
·
verified ·
1 Parent(s): b571657

Upload .dockerignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .dockerignore +80 -0
.dockerignore ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SuperKart Sales Forecasting API - Docker Ignore
2
+ # ==============================================
3
+
4
+ # Python cache
5
+ __pycache__/
6
+ *.py[cod]
7
+ *$py.class
8
+ *.so
9
+ .Python
10
+ build/
11
+ develop-eggs/
12
+ dist/
13
+ downloads/
14
+ eggs/
15
+ .eggs/
16
+ lib/
17
+ lib64/
18
+ parts/
19
+ sdist/
20
+ var/
21
+ wheels/
22
+ *.egg-info/
23
+ .installed.cfg
24
+ *.egg
25
+
26
+ # Virtual environments
27
+ .env
28
+ .venv
29
+ env/
30
+ venv/
31
+ ENV/
32
+ env.bak/
33
+ venv.bak/
34
+
35
+ # IDE files
36
+ .vscode/
37
+ .idea/
38
+ *.swp
39
+ *.swo
40
+ *~
41
+
42
+ # OS files
43
+ .DS_Store
44
+ .DS_Store?
45
+ ._*
46
+ .Spotlight-V100
47
+ .Trashes
48
+ ehthumbs.db
49
+ Thumbs.db
50
+
51
+ # Logs
52
+ *.log
53
+ logs/
54
+
55
+ # Git
56
+ .git/
57
+ .gitignore
58
+
59
+ # Documentation
60
+ *.md
61
+ docs/
62
+
63
+ # Test files
64
+ tests/
65
+ test_*.py
66
+ *_test.py
67
+
68
+ # Jupyter notebooks
69
+ *.ipynb
70
+ .ipynb_checkpoints/
71
+
72
+ # Data files (exclude training data from container)
73
+ *.csv
74
+ *.json
75
+ data/
76
+
77
+ # Temporary files
78
+ tmp/
79
+ temp/
80
+ *.tmp