Ikyy commited on
Commit
9748d1b
·
verified ·
1 Parent(s): 6aecd8c

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +50 -0
.dockerignore ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # .dockerignore
2
+
3
+ # Node modules
4
+ **/node_modules
5
+ **/npm-debug.log
6
+
7
+ # Sessions (never include in image)
8
+ **/sessions
9
+ **/*.json
10
+
11
+ # Build artifacts
12
+ **/dist
13
+ **/.next
14
+ **/.nuxt
15
+
16
+ # Logs
17
+ **/*.log
18
+ **/logs
19
+
20
+ # Environment
21
+ **/.env
22
+ **/.env.*
23
+
24
+ # Git
25
+ **/.git
26
+ **/.gitignore
27
+
28
+ # IDE
29
+ **/.vscode
30
+ **/.idea
31
+ **/*.swp
32
+ **/*.swo
33
+
34
+ # OS
35
+ **/.DS_Store
36
+ **/Thumbs.db
37
+
38
+ # Testing
39
+ **/coverage
40
+ **/.nyc_output
41
+ **/test
42
+
43
+ # Documentation
44
+ **/README.md
45
+ **/docs
46
+
47
+ # Deployment
48
+ **/docker-compose.yml
49
+ **/Dockerfile
50
+ **/.dockerignore