From ab9c650d93d11e9788ef5b3b1f63900b261a67de Mon Sep 17 00:00:00 2001 From: serversdwn Date: Tue, 16 Dec 2025 20:54:43 +0000 Subject: [PATCH] .dockerignore improve for deployment --- .dockerignore | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.dockerignore b/.dockerignore index e809327..7e67d4d 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,19 +1,39 @@ +# Python cache / compiled __pycache__ *.pyc *.pyo *.pyd .Python + +# Build artifacts *.so *.egg *.egg-info dist build + +# VCS .git .gitignore + +# Databases (must live in volumes) *.db *.db-journal + +# Environment / virtualenv .env .venv venv/ ENV/ + +# Runtime data (mounted volumes) data/ + +# Editors / OS junk +.vscode/ +.idea/ +.DS_Store +Thumbs.db + +# Tests (optional) +tests/