CodeLens / .dockerignore
ArshVerma's picture
Fix Docker build: Allow dashboard source in context
2520b1e
Raw
History Blame Contribute Delete
663 Bytes
# Python Artifacts
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
MANIFEST
# Dashboard Build (Keep node_modules out of context, but allow source for builder)
static/dashboard/
dashboard/node_modules/
# Virtual Environment
venv/
.venv/
env/
# Testing & Coverage
tests/
.pytest_cache/
coverage.xml
.coverage
htmlcov/
pytest.ini
# Git
.git/
.gitignore
# Environment & Private Files
.env
.env.*
*.env.local
.history/
Roadmap.html
# Data Persistence (Ensures no local DB leaks into image)
data/
codelens.db
*.sqlite3
# OS Specific
.DS_Store
.DS_Store?
**/._*
**/.DS_Store
Thumbs.db
ehthumbs.db
# IDEs
.vscode/
.idea/
*.swp
*.swo