26 lines
332 B
Plaintext
26 lines
332 B
Plaintext
# Build artifacts — must not be copied into the image.
|
|
# Docker does NOT honor .gitignore, so these are listed explicitly.
|
|
**/bin/
|
|
**/obj/
|
|
**/out/
|
|
|
|
# IDE / tooling
|
|
**/.vs/
|
|
**/.vscode/
|
|
**/.idea/
|
|
**/*.user
|
|
|
|
# Git / CI
|
|
.git/
|
|
.gitignore
|
|
.github/
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose*.yml
|
|
|
|
# Misc
|
|
**/node_modules/
|
|
**/*.md
|