fix(docker): properly allow locale and data files

Fixed .dockerignore syntax - was using '#!' instead of proper negation.
Now explicitly allowing fluxer_app/src/data/** and fluxer_app/src/locales/**
with proper negation syntax.
This commit is contained in:
2026-03-01 11:38:01 -05:00
parent a258752adc
commit 482b7dee25

View File

@@ -37,14 +37,16 @@
**/Thumbs.db **/Thumbs.db
**/yarn-debug.log* **/yarn-debug.log*
**/yarn-error.log* **/yarn-error.log*
# Don't block emojis.json and locale files - they're needed for the build # Original exclusions for emojis/locales commented out - needed for build
#!/fluxer_app/src/data/emojis.json # /fluxer_app/src/data/emojis.json
#/fluxer_app/src/locales/*/messages.js # /fluxer_app/src/locales/*/messages.js
dev dev
!fluxer_app/dist !fluxer_app/dist
!fluxer_app/dist/** !fluxer_app/dist/**
!fluxer_devops/cassandra/migrations !fluxer_devops/cassandra/migrations
# Explicitly allow critical build data # Explicitly allow critical build data (trailing slash means directory)
!fluxer_app/src/data/ !fluxer_app/src/data
!fluxer_app/src/locales/ !fluxer_app/src/data/**
!fluxer_app/src/locales
!fluxer_app/src/locales/**
!**/scripts/ !**/scripts/