We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c29ef2d + 6423a49 commit af68145Copy full SHA for af68145
1 file changed
.dockerignore
@@ -0,0 +1,67 @@
1
+# Git
2
+.git
3
+.gitignore
4
+
5
+# Python
6
+__pycache__/
7
+*.py[cod]
8
+*$py.class
9
+.Python
10
+env/
11
+venv/
12
+ENV/
13
+.venv/
14
+Pipfile.lock
15
16
+# Python Build / Distribution
17
+build/
18
+develop-eggs/
19
+dist/
20
+downloads/
21
+eggs/
22
+.eggs/
23
+lib/
24
+lib64/
25
+parts/
26
+sdist/
27
+var/
28
+wheels/
29
+share/python-wheels/
30
+*.egg-info/
31
+.installed.cfg
32
+*.egg
33
+MANIFEST
34
35
+# C/C++ Build Artifacts
36
+target/
37
+*.o
38
+*.out
39
+*.so
40
+*.dylib
41
+*.dll
42
+CMakeCache.txt
43
+CMakeFiles/
44
45
+# Testing and Coverage
46
+.tox/
47
+.coverage
48
+.coverage.*
49
+.cache
50
+nosetests.xml
51
+coverage.xml
52
+*.cover
53
+*.py,cover
54
+.hypothesis/
55
+.pytest_cache/
56
57
+# IDE and OS files
58
+.vscode/
59
+.idea/
60
+*.swp
61
+*.swo
62
+.DS_Store
63
+Thumbs.db
64
65
+Dockerfile*
66
+docker-compose.yml
67
+.dockerignore
0 commit comments