From c56040eee45fa0f890ed0e10f5b4216600a506a7 Mon Sep 17 00:00:00 2001 From: Fredrik Johansson Date: Thu, 16 Jul 2026 18:48:35 +0200 Subject: [PATCH] Add .dockerignore to shrink the build context sent to the daemon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit node_modules/.git/dist were being sent on every build with no .dockerignore at all — same class of fix as goonk's recent deploy-speed pass. Verified by building with the new file in place (adventure and new spot-checked with a full container run + health check; the rest share the same multi-stage Dockerfile pattern). --- .dockerignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..9fb9c91 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,9 @@ +node_modules +**/node_modules +dist +**/dist +.git +.env +.env.example +*.log +data