From a258752adc5cfd1326023804f3a793527ba431c4 Mon Sep 17 00:00:00 2001 From: Kitty Cat Date: Sun, 1 Mar 2026 11:31:32 -0500 Subject: [PATCH] fix(docker): allow emoji data and locale files in build The .dockerignore was blocking critical files needed for frontend build: - fluxer_app/src/data/emojis.json - fluxer_app/src/locales/*/messages.* These files must be included for the app build to succeed. --- .dockerignore | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.dockerignore b/.dockerignore index 688c86c8..d60f49c7 100644 --- a/.dockerignore +++ b/.dockerignore @@ -37,13 +37,14 @@ **/Thumbs.db **/yarn-debug.log* **/yarn-error.log* -/fluxer_app/src/data/emojis.json -# Don't block locale files - they're needed for the build -#!/fluxer_app/src/locales/*/messages.js +# Don't block emojis.json and locale files - they're needed for the build +#!/fluxer_app/src/data/emojis.json +#/fluxer_app/src/locales/*/messages.js dev !fluxer_app/dist !fluxer_app/dist/** !fluxer_devops/cassandra/migrations -# Allow build scripts and locale files +# Explicitly allow critical build data +!fluxer_app/src/data/ +!fluxer_app/src/locales/ !**/scripts/ -!**/locales/