Files
bookhoard/.dockerignore
T
john-okeefe 5dca78789d fix(docker): exclude uploads/ from build context
The uploads/ directory is bind-mounted at runtime via docker-compose and
should not be copied into the Docker build context. This was slowing down
builds and including potentially large media files in the context.
2026-05-16 19:31:39 -04:00

28 lines
306 B
Plaintext

# Git
.git
.gitignore
# Documentation
README.md
*.md
.env.example
.editorconfig
# IDE
.DS_Store
.vscode
.idea
# Build artifacts (don't copy into container)
tmp/
logs/
*.log
# Dependencies (install fresh in container)
node_modules/
# Environment
.env
# Media uploads (bind-mounted at runtime)
uploads/