From 5ec8796ae42652bb6be8894b493553d911b8b7b2 Mon Sep 17 00:00:00 2001 From: Chris Sanden Date: Wed, 13 May 2026 15:42:00 +0200 Subject: [PATCH] added a conservative dockerignore --- .dockerignore | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..00ef906 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,33 @@ +# Git / repo metadata +.git +.gitignore +.gitlab-ci.yml + +# Local Python artifacts +__pycache__/ +*.py[cod] +*.pyo +*.pyd +.pytest_cache/ +.coverage +htmlcov/ + +# Local virtual environments +.venv/ +venv/ +env/ + +# Local databases +database_file/*.db + +# Dev/test files not needed at runtime +tests/ +compose.yml +manifests/ + +# Local/editor/system files +.env +*.log +.DS_Store +.idea/ +.vscode/