-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dockerignore
50 lines (41 loc) · 873 Bytes
/
.dockerignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Exclude node_modules to ensure dependencies are installed inside the container
node_modules
# Exclude build output directories if you're using multi-stage builds
build
dist
# Exclude logs and temporary files
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.tmp
*.swp
*.swo
# Exclude coverage reports
coverage
# # Exclude environment variable files to avoid leaking sensitive information
# .env
# .env.local
# .env.development.local
# .env.test.local
# .env.production.local
# Exclude version control directories and files
.git
.gitignore
# Exclude Docker-related files to prevent them from being copied into the image
Dockerfile
docker-compose.yml
compose.yaml
# Exclude IDE/editor-specific directories and files
.vscode
.idea
# Exclude OS-generated files
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
# Exclude miscellaneous files
*.bak
*.backup
*.orig