From ad5ec65a1130cdc3bd7ff8befc7c589067338f6c Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Mon, 27 Oct 2025 16:29:48 -0400 Subject: [PATCH] Restoring the .dockerignore file to the repo (for real!). Signed-off-by: Cliff Hill --- .dockerignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..af98ce1 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,44 @@ +# Git and version control +.git +.gitignore +.gitea + +# Documentation +*.md +docs/ + +# CI/CD files +.github/ +renovate.json + +# Environment files and secrets +.env +.env.* +secrets/ +**/*.pem +**/*.key +**/id_rsa* +**/id_ed25519* +**/.ssh/ + +# Cache directories +.ruff_cache/ +**/__pycache__/ +**/.pytest_cache/ +**/node_modules/ +**/dist/ +**/build/ + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo + +# OS files +.DS_Store +Thumbs.db + +# Logs +*.log +logs/