Omarrran commited on
Commit
cdd3703
·
1 Parent(s): f25d5a5

Fix Dockerfile paths

Browse files
Files changed (1) hide show
  1. .dockerignore +11 -9
.dockerignore CHANGED
@@ -1,12 +1,14 @@
 
1
  node_modules/
2
  dist/
3
- .next/
4
- out/
5
- *.log
6
- .DS_Store
7
  .env*.local
8
- coverage/
9
- output/*
10
- !output/.gitkeep
11
- logs/*
12
- !logs/.gitkeep
 
 
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