-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.dockerignore
62 lines (52 loc) · 878 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
51
52
53
54
55
56
57
58
59
60
61
62
# Ignore Git files and folders
.git
.gitattributes
.gitignore
# Ignore Docker-specific files and folders
.docker
docker-compose.yml
docker-compose.override.yml
docker-compose-debug.yml
dockerfile
.dockerignore
# Ignore environment and config files
.env
.env.local
.env.development
.env.production
.env.example
*.config
*.yaml
# Ignore Python cache and environment folders
**/__pycache__/
**/*.py[cod]
.Python
.venv/
venv/
# Ignore Node modules
node_modules/
# Ignore IDE and editor configurations and temporary files
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
*.iml
# Ignore temporary and backup files
*.swp
*.swo
*.bak
*.tmp
*.temp
*.DS_Store
# Ignore log files
*.log
app.log
# Ignore build and distribution folders
build/
dist/
out/
# Ignore documentation and markdown files
*.md
# Ignore config and config files folders
/config_files
/config/config_files