Spaces:
Running
Running
Create .dockerignore
Browse files- .dockerignore +24 -0
.dockerignore
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Denependencies
|
| 2 |
+
node_modules
|
| 3 |
+
venv
|
| 4 |
+
.env
|
| 5 |
+
.env.local
|
| 6 |
+
|
| 7 |
+
# Build outputs
|
| 8 |
+
.next
|
| 9 |
+
dist
|
| 10 |
+
build
|
| 11 |
+
*.pyc
|
| 12 |
+
__pycache__
|
| 13 |
+
|
| 14 |
+
# Git
|
| 15 |
+
.git
|
| 16 |
+
.gitignore
|
| 17 |
+
|
| 18 |
+
# OS files
|
| 19 |
+
.DS_Store
|
| 20 |
+
Thumbs.db
|
| 21 |
+
|
| 22 |
+
# Documentation
|
| 23 |
+
*.md
|
| 24 |
+
docs
|