From 1ac1f8b69ee81e70f04df2e8ad138a19ec45d3ce Mon Sep 17 00:00:00 2001 From: darshankabariya Date: Fri, 17 Jul 2026 15:52:02 +0530 Subject: [PATCH] build: exclude host nimbledeps and build dirs from docker context The **/vendor/* dockerignore rule strips vendored sources (e.g. nat_traversal's miniupnp) out of a host-resolved nimbledeps/ tree while keeping its stamp, so in-container builds skip dependency resolution and then fail on the missing vendor content. Excluding nimbledeps/ and build/ makes the container resolve dependencies fresh, matching CI. Co-Authored-By: Claude Fable 5 --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index 247ac61ce..1497e83ce 100644 --- a/.dockerignore +++ b/.dockerignore @@ -7,3 +7,5 @@ /nimcache librln* **/vendor/* +/nimbledeps +/build