From 882fad492c6250757fb936a64677c93e2d9e8b09 Mon Sep 17 00:00:00 2001 From: jason Date: Sun, 8 Mar 2026 15:48:52 -0500 Subject: [PATCH] Add .dockerignore to optimize build context --- .dockerignore | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..3de88c7 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,46 @@ +# Dependencies +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Development +.env +.env.local +.env.*.local + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Git +.git/ +.gitignore + +# Build artifacts (we copy these explicitly when needed) +frontend/dist/ +backend/dist/ + +# Temp files +temp/ +*.tmp + +# Documentation +README.md +*.md +!package*.json + +# Test files +*.test.ts +*.test.js +*.spec.ts +*.spec.js +__tests__/ +__mocks__/ \ No newline at end of file