From b8cd4d9e0b608fd34cb56a3ba557f496d07566c3 Mon Sep 17 00:00:00 2001 From: Hitonabi Date: Tue, 21 Jul 2026 17:24:29 +0200 Subject: [PATCH] =?UTF-8?q?.dockerignore:=20=5F=5Fpycache=5F=5F=20und=20.p?= =?UTF-8?q?yc=20ausschlie=C3=9Fen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .dockerignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..650f159 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,45 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +.eggs/ +*.egg + +# Virtual Environment +venv/ +env/ +venv.bak/ +.env + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Docker +.dockerignore +.docker/ + +# Test +tests/ +test_*.py +*_test.py +.pytest_cache/ + +# Build +dist/ +build/ +*.egg-info/ + +# Cache +.cache/ +__pycache__/