Same root cause as the .gitignore fix, but for the Docker build context: `**/Data/` stripped the DbContext, entities and migrations out of the image build, so `docker publish` failed (WishNinja.Data not found). Narrow it to runtime artifacts only. Co-Authored-By: Claude Opus 4.8 <[email protected]>
18 lines
288 B
Plaintext
18 lines
288 B
Plaintext
**/bin/
|
|
**/obj/
|
|
# Keep Data/ source (DbContext, entities, migrations) — only drop runtime artifacts.
|
|
**/Data/*.db
|
|
**/Data/*.db-shm
|
|
**/Data/*.db-wal
|
|
**/Data/uploads/
|
|
**/Data/keys/
|
|
**/smoke-data/
|
|
**/data/
|
|
**/.vs/
|
|
**/.git/
|
|
**/*.user
|
|
tests/
|
|
README.md
|
|
docker-compose.yml
|
|
unraid-template.xml
|