From b41625597c6342ce79af9149c939d531715467cb Mon Sep 17 00:00:00 2001 From: Thomas Joise Date: Fri, 17 Jul 2026 22:56:09 +0530 Subject: [PATCH] chore: add .dockerignore (completes the tracked Docker setup) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Excludes node_modules/dist (rebuilt in-image; host copies are Windows-native), .git, .env and data — matching the existing Dockerfile + docker-compose.yml. Co-Authored-By: Claude Fable 5 --- .dockerignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..1df6cb8 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,9 @@ +# Keep the build context small and correct. node_modules and dist are rebuilt inside +# the image (host copies are Windows/native-built and would break Linux); .env and data +# must never be baked into an image. +**/node_modules +**/dist +.git +**/.env +**/data +*.log