mirror of
https://github.com/Keeper-Security/harness-integration.git
synced 2026-06-04 18:23:51 +08:00
5dd14e97cd
- Add .claude/, CLAUDE.md, and non-README *.md to .dockerignore to prevent internal tooling files from being included in published image - Add .claude/ to .gitignore to prevent accidental commits of local config - Add dockerhub-overview.md for Docker Hub repository description
42 lines
491 B
Plaintext
42 lines
491 B
Plaintext
# Dependencies - we install fresh in Docker
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Git files - not needed in image
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE and editor files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Claude Code files - internal dev tooling, never ship in image
|
|
.claude/
|
|
CLAUDE.md
|
|
plans/
|
|
|
|
# Documentation files not needed at runtime
|
|
*.md
|
|
!README.md
|