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.
.dockerignore
1 parent 6bd4f51 commit 7229515Copy full SHA for 7229515
.dockerignore
@@ -1,13 +1,33 @@
1
-.git/
2
-.idea/
3
-.venv/
4
bin/
5
ci/
6
tests/
7
+# IDE
+.idea/
+
8
+# git
9
+.git/
10
+.gitignore
11
+.gitkeep
12
13
+# Python cache
14
**/.mypy_cache/
15
**/.pytest_cache/
16
**/__pycache__/
17
**/*.pyc
18
-**/Dockerfile
19
+# Virtual environment
20
+env/
21
+venv/
22
+.venv/
23
+*.egg-info/
24
25
+# Dockerfiles
26
+**/Dockerfile*
27
28
+# Logs
29
+*.log
30
31
+# OS-specific files
32
+.DS_Store
33
+Thumbs.db
0 commit comments