shovon
commited on
create .dockerignore file
Browse files- .dockerignore +26 -0
.dockerignore
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Ignore Git and GitHub files
|
2 |
+
.git
|
3 |
+
.github/
|
4 |
+
|
5 |
+
# Ignore Husky configuration files
|
6 |
+
.husky/
|
7 |
+
|
8 |
+
# Ignore documentation and metadata files
|
9 |
+
CONTRIBUTING.md
|
10 |
+
LICENSE
|
11 |
+
README.md
|
12 |
+
|
13 |
+
# Ignore environment examples and sensitive info
|
14 |
+
.env
|
15 |
+
*.local
|
16 |
+
*.example
|
17 |
+
|
18 |
+
# Ignore node modules, logs and cache files
|
19 |
+
**/*.log
|
20 |
+
**/node_modules
|
21 |
+
**/dist
|
22 |
+
**/build
|
23 |
+
**/.cache
|
24 |
+
logs
|
25 |
+
dist-ssr
|
26 |
+
.DS_Store
|