From ec4aaa628f708e3db44b1a91d094488708931459 Mon Sep 17 00:00:00 2001 From: Maurice Date: Sat, 18 Apr 2026 01:57:01 +0200 Subject: [PATCH] fix(docker): include server/data/airports.json in the image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The existing 'data' entry in .dockerignore hid the committed airports.json snapshot from the build context, so every Docker deployment ended up without it. The airport service then logged the "missing" warning and the autocomplete silently returned no results — the dropdown flashed a loading spinner and disappeared. Add an exception that keeps the SQLite DB, logs and tmp excluded but lets the airports snapshot through. --- .dockerignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.dockerignore b/.dockerignore index c0defbdb..dcd9575b 100644 --- a/.dockerignore +++ b/.dockerignore @@ -3,6 +3,7 @@ client/node_modules server/node_modules client/dist data +!server/data/airports.json uploads .git .github