Fix .dockerignore excluding Data source folder
Build & Push Docker image / test (push) Successful in 40s
Build & Push Docker image / docker (push) Successful in 1m22s

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]>
This commit is contained in:
Jim Basso
2026-06-11 14:30:03 -05:00
co-authored by Claude Opus 4.8
parent e7af8944a6
commit e323a2e882
+6 -1
View File
@@ -1,6 +1,11 @@
**/bin/
**/obj/
**/Data/
# 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/