quailvec / .dockerignore
akhil-vaidya's picture
Upload 30 files
1b04a15 verified
Raw
History Blame
835 Bytes
# Docker
.dockerignore
Dockerfile*
docker-compose*.yml
# Git
.git/
.gitignore
# Python Virtual Environment
.venv/
venv/
env/
ENV/
env.bak/
venv.bak/
# Python cache
__pycache__/
*.pyc
*.py[cod]
*$py.class
*.so
# Build artifacts
dist/
build/
develop-eggs/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Documentation (keep README.md)
docs/
*.md
!README.md
# Tests
tests/
test_*/
*_test.py
**/test_*.py
# Data files (you may want to adjust these based on your needs)
*.csv
*.json
*.pkl
*.parquet
# Logs
*.log
logs/
# Temporary files
tmp/
temp/
.tmp/