# The build context is sent to the Docker daemon in full before anything runs. Without # this file that was 497MB and 80 seconds of transfer per build — and worse, `COPY . .` # in the builder stage copied the HOST's node_modules over the Linux ones `npm ci` had # just installed. On a Windows or macOS host those carry the wrong platform's native # binaries (@next/swc-*, lightningcss), so the build either fails or silently links the # wrong ones. Dependencies must come from the deps stage and nowhere else. node_modules .next out *.tsbuildinfo next-env.d.ts # Nothing below is read by `next build`. .git .gitignore Dockerfile .dockerignore npm-debug.log* .env* playwright-report test-results coverage .DS_Store Thumbs.db