Exclude nested node_modules from the Docker build context

.dockerignore only matched the root node_modules, so a locally
installed frontend-modern/node_modules entered the build context and
collided with the npm ci layer during COPY frontend-modern/, failing
local image builds. CI checkouts never hit this because they build
from a clean tree.
This commit is contained in:
rcourtman
2026-07-08 00:57:35 +01:00
parent cbd72d3186
commit b052e59d24
+1
View File
@@ -29,6 +29,7 @@ scripts/macos/dist/
# Dependencies
node_modules/
**/node_modules/
vendor/
# Logs