muhammadnoman76 commited on
Commit
a03dbc8
·
1 Parent(s): 762e088
Files changed (1) hide show
  1. .dockerignore +8 -5
.dockerignore CHANGED
@@ -2,16 +2,15 @@
2
  .git
3
  .gitignore
4
 
5
- # Node modules
6
  node_modules
7
  npm-debug.log*
8
  yarn-debug.log*
9
  yarn-error.log*
10
 
11
- # Next.js
12
  .next/
13
  out/
14
- build/
15
 
16
  # Python
17
  __pycache__/
@@ -38,7 +37,7 @@ Thumbs.db
38
  # Logs
39
  *.log
40
 
41
- # Environment files (will be copied explicitly)
42
  .env*
43
  !.env.example
44
 
@@ -57,4 +56,8 @@ coverage/
57
 
58
  # Temporary files
59
  *.tmp
60
- *.temp
 
 
 
 
 
2
  .git
3
  .gitignore
4
 
5
+ # Node modules (will be installed during build)
6
  node_modules
7
  npm-debug.log*
8
  yarn-debug.log*
9
  yarn-error.log*
10
 
11
+ # Next.js build outputs (will be generated during build)
12
  .next/
13
  out/
 
14
 
15
  # Python
16
  __pycache__/
 
37
  # Logs
38
  *.log
39
 
40
+ # Environment files (will be copied explicitly if needed)
41
  .env*
42
  !.env.example
43
 
 
56
 
57
  # Temporary files
58
  *.tmp
59
+ *.temp
60
+
61
+ # Build artifacts that will be created during Docker build
62
+ build/
63
+ dist/