From 6bb1d94b0e71476a9f3e689ce147f6996742c05c Mon Sep 17 00:00:00 2001 From: Chris Christiansen Date: Sat, 5 Sep 2026 20:00:19 +0000 Subject: [PATCH] build: improve .dockerignore --- .dockerignore | 44 ++++++++++++++++++++++++++++++++++++-------- 1 file changed, 36 insertions(+), 8 deletions(-) diff --git a/.dockerignore b/.dockerignore index 862509d..ae387ca 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,9 +1,37 @@ -spire-1.15.3/data -.venv -.venv-flake8 -__pycache__ -*.pyc -*.pyo -*.pyd -.pytest_cache +# Git metadata +.git/ + +# Python environments and generated files +.venv/ +.venv-*/ +**/.venv/ +**/venv/ +**/env/ +**/tmp_venv/ +__pycache__/ +*.py[cod] +.pytest_cache/ .coverage +coverage/ +htmlcov/ + +# Node and frontend dependencies +node_modules/ + +# Local infrastructure state and caches +.terraform/ +**/.terraform/ +*.tfstate +*.tfstate.* +.terraform.lock.hcl + +# Local tools, downloaded artifacts, and temporary output +spire-*/ +*.log +tmp/ +temp/ +.gemini/ + +# OS/editor metadata +.DS_Store +.vscode/ \ No newline at end of file