-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy path.dockerignore
More file actions
119 lines (104 loc) · 2.49 KB
/
.dockerignore
File metadata and controls
119 lines (104 loc) · 2.49 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# =================================================================
# General & OS-Specific
# =================================================================
# Git history and Fly.io configuration
.git
fly.toml
# macOS and Windows artifacts
.DS_Store
Thumbs.db
# IDE and editor configuration
.vscode/
.idea/
*.swp
# =================================================================
# Python Virtual Environments & Caches
# =================================================================
# Common environment folder names
.env
.venv
env/
venv/
ENV/
__pypackages__/
# Python bytecode and cache folders
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
# =================================================================
# Build, Distribution & Packaging Artifacts
# =================================================================
build/
dist/
downloads/
eggs/
lib/
lib64/
sdist/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# =================================================================
# Documentation & Local Configs
# =================================================================
# Markdown files for repository, not application
CONTRIBUTING.md
CHANGELOG.md
# Local dev configs
docker-compose.yml
.pre-commit-config.yaml
.flake8
# Sphinx or MkDocs generated sites
docs/_build/
site/
# =================================================================
# Data, Models, Logs & Secrets
# =================================================================
# General log files
*.log
pip-log.txt
# Local databases
*.sqlite3
*.sqlite3-journal
# Local data, models, and media files
data/
datasets/
assets/
media/
*.csv
*.parquet
*.jpg
*.png
# Note: *.json and *.pkl are NOT ignored because database/*.json and database/*.pkl are needed
# Local settings and secrets (should never be in the image)
local_settings.py
# =================================================================
# Testing & Code Coverage
# =================================================================
.coverage
.coverage.*
.tox
htmlcov/
nosetests.xml
coverage.xml
# =================================================================
# Frontend / Node.js
# =================================================================
node_modules/
npm-debug.log
.npm/
package-lock.json
webpack.config.js
vite.config.js
# =================================================================
# Infrastructure & Cloud Credentials (Sensitive)
# =================================================================
*.tfstate
*.tfstate.*
.terraform/
.aws/
.gcloud/