From 6e704da86bfaa98f21d79edc61867f478e3f8b41 Mon Sep 17 00:00:00 2001 From: Oliver Hofmann Date: Wed, 29 Apr 2026 09:34:19 +0200 Subject: [PATCH] Expand .dockerignore with standard entries --- .dockerignore | 50 ++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 44 insertions(+), 6 deletions(-) diff --git a/.dockerignore b/.dockerignore index 71eae06..250db76 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,11 +1,49 @@ -.git/ +# Python +__pycache__/ +*.pyc +*.pyo +*.pyd .venv/ venv/ +*.egg-info/ +.pytest_cache/ + +# Tests +backend/tests/ + +# Environment & secrets .env +*.env.local + +# Databases +*.db +*.sqlite3 + +# Logs +logs/ +*.log + +# IDE +.idea/ +.vscode/ + +# Git +.git/ +.gitignore + +# Frontend frontend/node_modules/ frontend/dist/ -backend/__pycache__/ -backend/**/__pycache__/ -backend/*.pyc -backend/test.db -backend/tests/ + +# Docker +docker-compose.yml +.dockerignore + +# Docs +*.md + +# Dev & build scripts +run_dev.py +build_push.sh +start.sh +test_api.sh