openclaw/.dockerignore
Attili-sys ed18956d2b Fix Docker build failures on Windows/WSL environments
File	Status
.dockerignore	Modified (cleaned up, removed problematic exclusions)
.npmrc	Modified (added workspace peer resolution)
Dockerfile	Modified (copy all workspace package.json files)
pnpm-workspace.yaml	Modified (removed invalid comment)
2026-01-27 17:45:07 +03:00

57 lines
693 B
Plaintext

# Version control
.git
.worktrees
# OS files
.DS_Store
**/.DS_Store
# Cache directories
.bun-cache
.bun
.tmp
**/.tmp
.pnpm-store
**/.pnpm-store
.turbo
**/.turbo
.cache
**/.cache
.next
**/.next
tmp
**/tmp
# Dependencies (rebuilt in container)
node_modules
**/node_modules
# Test/coverage output
coverage
**/coverage
*.log
**/*.trace
# Large app trees not needed for CLI build
apps/macos/.build
apps/ios/build
Peekaboo/
Swabble/
# Media files (not needed for build)
*.png
*.jpg
*.jpeg
*.webp
*.gif
*.mp4
*.mov
*.wav
*.mp3
# Keep these (needed for build):
# - packages/ (clawdbot shim)
# - extensions/ (workspace packages)
# - dist/ (excluded - rebuilt in container)
# - Core/ (if needed)