Keeps local Claude Code settings out of the build context alongside the other editor directories. No effect on the image itself -- the Dockerfile only copies scripts/, configs/ and examples/ -- but the directory was being sent to the daemon on every build. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
38 lines
330 B
Plaintext
38 lines
330 B
Plaintext
# Git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
README.md
|
|
CLAUDE.md
|
|
|
|
# Local development files
|
|
user/
|
|
instance_*
|
|
local-dev.sh
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
.claude/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log* |