From 4231aafb1efd17ac052283a74235d7dddd04deef Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Fri, 28 Nov 2025 12:29:58 +0100 Subject: [PATCH] build: add .dockerignore file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Docker ignore file to exclude unnecessary files from build context: - Git files and documentation - Docker configuration files - Runtime data and logs - Python cache and test files - IDE/editor files - Environment and temporary files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .dockerignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..bd58efa --- /dev/null +++ b/.dockerignore @@ -0,0 +1,53 @@ +# Git files +.git/ +.gitignore +.gitattributes + +# Documentation +*.md +LICENSE + +# Docker files (not needed in image) +docker-compose.yml +.dockerignore + +# Data and runtime files +data/ +*.log +*.pid + +# Python cache +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +dist/ +build/ +.pytest_cache/ +.coverage +htmlcov/ + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# Test files +test-server.py +tests/ + +# Environment files +.env +.env.local +*.pem +*.key +*.crt + +# Plans and notes +.claude/ +*.tmp