Fix .dockerignore excluding Data source folder
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:
co-authored by
Claude Opus 4.8
parent
e7af8944a6
commit
e323a2e882
+6
-1
@@ -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/
|
||||
|
||||
Reference in New Issue
Block a user