mirror of
https://github.com/codeaashu/claude-code.git
synced 2026-04-08 22:28:48 +03:00
36 lines
511 B
Plaintext
36 lines
511 B
Plaintext
# NOTE: Docker reads .dockerignore from the build context root.
|
|
# The canonical copy lives at /.dockerignore — keep both in sync.
|
|
|
|
# Dependencies (rebuilt in container)
|
|
node_modules
|
|
|
|
# Git metadata
|
|
.git
|
|
.github
|
|
.gitignore
|
|
|
|
# Build output (rebuilt in container)
|
|
dist
|
|
|
|
# Env files — never bake secrets into the image
|
|
.env
|
|
.env.*
|
|
|
|
# Logs and debug
|
|
*.log
|
|
npm-debug.log*
|
|
bun-debug.log*
|
|
|
|
# Test artifacts
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Editor / OS noise
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode
|
|
.idea
|
|
|
|
# Docker context itself
|
|
docker
|