Spaces:
Sleeping
Sleeping
Create .dockerignore
Browse files- .dockerignore +24 -0
.dockerignore
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.git/
|
2 |
+
.gitignore
|
3 |
+
|
4 |
+
Docker
|
5 |
+
Dockerfile
|
6 |
+
.dockerignore
|
7 |
+
|
8 |
+
Virtual environment
|
9 |
+
.venv/
|
10 |
+
venv/
|
11 |
+
ENV/
|
12 |
+
env/
|
13 |
+
*.env
|
14 |
+
|
15 |
+
Python cache
|
16 |
+
pycache/
|
17 |
+
*.pyc
|
18 |
+
*.pyo
|
19 |
+
*.pyd
|
20 |
+
|
21 |
+
IDE / Editor specific
|
22 |
+
.idea/
|
23 |
+
.vscode/
|
24 |
+
*.swp
|