namelessai commited on
Commit
ad4094f
·
verified ·
1 Parent(s): cabe7e5

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +62 -0
.dockerignore ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # IDEs
27
+ .vscode/
28
+ .idea/
29
+ *.swp
30
+ *.swo
31
+ *~
32
+ .DS_Store
33
+
34
+ # Git
35
+ .git/
36
+ .gitignore
37
+ .gitattributes
38
+
39
+ # Documentation
40
+ *.md
41
+ !requirements.txt
42
+
43
+ # Docker
44
+ docker-compose.yml
45
+ Dockerfile
46
+ .dockerignore
47
+
48
+ # Temporary files
49
+ *.log
50
+ *.tmp
51
+ tmp/
52
+ temp/
53
+
54
+ # Test files
55
+ tests/
56
+ test_*.py
57
+ *_test.py
58
+
59
+ # CI/CD
60
+ .github/
61
+ .gitlab-ci.yml
62
+ .travis.yml