Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Git files
.git
.gitignore
.gitattributes

# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

# Virtual environments
venv/
.venv/
ENV/
env/

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS files
.DS_Store
Thumbs.db

# Model files (mount these as volumes instead)
models/
chatthero-models/
*.safetensors
*.bin
*.ckpt
*.pth

# Outputs and logs
outputs/
comparison_results/
test_logs/
test_training_output/
*.log
crisis_logs.json

# Large datasets
*.jsonl
*.csv
*_data.json

# Documentation (not needed in container)
docs/
*.md
!README.md

# CI/CD
.github/

# Misc
*.bak
*.tmp
.cache/
Loading