Updated .dockerignore to exclude: - logs/ directory (contains large archived log files) - harness/ directory (contains test reports and temporary files) These directories contain large files that were causing container build failures with 'archive/tar: write too long' errors. Excluding them reduces the build context size and allows the container build to succeed. The excluded directories are runtime-generated and not needed in the production container image. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
467 B
Plaintext
44 lines
467 B
Plaintext
**/*_test.go
|
|
test/
|
|
# Binaries
|
|
bin/
|
|
|
|
# Configuration files that might contain sensitive information
|
|
config/local.yaml
|
|
config/secrets.yaml
|
|
|
|
# Go workspace
|
|
go.work
|
|
|
|
# Test coverage files
|
|
coverage.txt
|
|
coverage.html
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Log files and directories
|
|
*.log
|
|
logs/
|
|
harness/
|
|
|
|
# Database files
|
|
*.db
|
|
|
|
# Data directory
|
|
data/
|
|
vendor/
|
|
backup/
|
|
backups/ |