adeyemi001 commited on
Commit
8a60f70
·
verified ·
1 Parent(s): 7a325d4

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
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ *.egg
8
+ *.egg-info/
9
+ dist/
10
+ build/
11
+ pip-log.txt
12
+ pip-delete-this-directory.txt
13
+
14
+ # Virtual environments
15
+ venv/
16
+ env/
17
+ ENV/
18
+ .venv
19
+
20
+ # IDE
21
+ .vscode/
22
+ .idea/
23
+ *.swp
24
+ *.swo
25
+ *~
26
+ .DS_Store
27
+
28
+ # Git
29
+ .git/
30
+ .gitignore
31
+ .gitattributes
32
+
33
+ # Docker
34
+ Dockerfile
35
+ docker-compose.yml
36
+ .dockerignore
37
+
38
+ # Documentation
39
+ *.md
40
+ !README.md
41
+
42
+ # Logs and databases
43
+ *.log
44
+ *.sqlite
45
+ *.db
46
+
47
+ # Testing
48
+ .pytest_cache/
49
+ .coverage
50
+ htmlcov/
51
+ .tox/
52
+ .mypy_cache/
53
+
54
+ # OS
55
+ Thumbs.db
56
+ .DS_Store