From 4b0ba9b4d22c5227ef279b24c5f1d5cfe319a073 Mon Sep 17 00:00:00 2001 From: Ashar Date: Sat, 25 Jul 2026 22:50:12 +0530 Subject: [PATCH] Add dockerignore file Signed-off-by: Ashar --- .dockerignore | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..8f53568 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,52 @@ +# Git +.git/ +.gitattributes +.gitignore + +# Large runtime dirs (mounted as volumes at runtime) +hf_cache/ +lenses/ +data/ + +# Vendor deps (cloned inside the Dockerfile) +vendor/ + +# Python cache / venvs +__pycache__/ +*.pyc +*.pyo +.venv/ +env/ + +# Node / front-end (rebuilt inside the container) +ui/node_modules/ +ui/dist/ + +# Editor / tooling +.claude/ +.vscode/ +.idea/ +.reprise/ + +# Docs / assets (not needed at runtime) +assets/ +README.md +LICENSE +NOTICE + +# Dev / test scripts +scripts/ + +# Local launchers / notes +start.bat +start - Copie.bat +start.local.bat +TODO.txt +TODO_later.txt + +# Docker compose (not needed inside the image) +docker-compose.yml + +# Logs / misc +*.log +*.stackdump