adeyemi001 commited on
Commit
4237441
·
verified ·
1 Parent(s): ae9bcaa

Upload .dockerignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .dockerignore +68 -0
.dockerignore ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ venv/
9
+ ENV/
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
+ newquant/
28
+ venv/
29
+ ENV/
30
+
31
+ # Jupyter Notebooks
32
+ .ipynb_checkpoints/
33
+ *.ipynb
34
+
35
+ # IDE
36
+ .vscode/
37
+ .idea/
38
+ *.swp
39
+ *.swo
40
+ *~
41
+
42
+ # OS
43
+ .DS_Store
44
+ Thumbs.db
45
+
46
+ # Git
47
+ .git/
48
+ .gitignore
49
+
50
+ # Data files (not needed in container)
51
+ *.csv
52
+ *.xlsx
53
+ *.xls
54
+
55
+ # Documentation and images (except static files)
56
+ README.md
57
+ *.md
58
+ qq_plot_residuals.png
59
+ residuals_distribution.png
60
+ residuals_vs_predicted.png
61
+
62
+ # Docker
63
+ Dockerfile
64
+ docker-compose.yml
65
+ .dockerignore
66
+
67
+ # Logs
68
+ *.log