Spaces:
Running
Running
Fix Dockerfile paths
Browse files- .dockerignore +11 -9
.dockerignore
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
|
|
| 1 |
node_modules/
|
| 2 |
dist/
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
.env*.local
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
| 1 |
+
# Ignore local build artifacts
|
| 2 |
node_modules/
|
| 3 |
dist/
|
| 4 |
+
output/
|
| 5 |
+
logs/
|
| 6 |
+
|
| 7 |
+
# Ignore local config
|
| 8 |
.env*.local
|
| 9 |
+
|
| 10 |
+
# Ignore mac files
|
| 11 |
+
.DS_Store
|
| 12 |
+
|
| 13 |
+
# Don't ignore web/.next - it's built inside Docker
|
| 14 |
+
# Don't ignore web/node_modules - it's installed inside Docker
|