From 53159f49b6b61332aab5b72dc487783943d38643 Mon Sep 17 00:00:00 2001 From: Verum Date: Sat, 7 Mar 2026 01:25:06 +0700 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B0=D0=B9=D0=BB=20=D0=B8=D0=B3=D0=BD?= =?UTF-8?q?=D0=BE=D1=80=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F=20?= =?UTF-8?q?=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8=20=D0=BA=D0=BE=D0=BD=D1=82?= =?UTF-8?q?=D0=B5=D0=B9=D0=BD=D0=B5=D1=80=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .dockerignore | 138 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..09e7f29 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,138 @@ +# ============================================================================= +# Git +# ============================================================================= +.git +.gitea +.github +.gitlab +.gitlab-ci.yml +.gitattributes +.pre-commit-config.yaml + +# ============================================================================= +# Python virtual environments +# ============================================================================= +.venv +venv +env +ENV + +# ============================================================================= +# Python cache +# ============================================================================= +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.so + +# ============================================================================= +# Python tooling +# ============================================================================= +.mypy_cache/ +.pytest_cache/ +.ruff_cache/ +.pytype/ +.pyre/ +.pyright/ + +# ============================================================================= +# Testing / Coverage +# ============================================================================= +.coverage +.coverage.* +htmlcov/ +.tox/ +.nox/ +tests/ +test/ +coverage.xml + +# ============================================================================= +# Build artifacts +# ============================================================================= +build/ +dist/ +.eggs/ +*.egg-info/ +pip-wheel-metadata/ + +# ============================================================================= +# Logs +# ============================================================================= +*.log +logs/ +log/ + +# ============================================================================= +# Node / Frontend +# ============================================================================= +node_modules/ +.next/ +.nuxt/ +out/ +coverage/ +*.tsbuildinfo + +# ============================================================================= +# IDE / Editor +# ============================================================================= +.idea/ +.vscode/ +*.swp +*.swo +*~ +.DS_Store +Thumbs.db + +# ============================================================================= +# Environment files +# ============================================================================= +.env +.env.* +!.env.example +!.env.sample + +# ============================================================================= +# Databases +# ============================================================================= +*.db +*.sqlite +*.sqlite3 + +# ============================================================================= +# Secrets +# ============================================================================= +*.pem +*.key +*.crt +*.p12 +*.pfx +secrets/ + +# ============================================================================= +# Temporary +# ============================================================================= +tmp/ +temp/ +*.tmp +*.temp +.cache/ + +# ============================================================================= +# Jupyter +# ============================================================================= +.ipynb_checkpoints/ + +# ============================================================================= +# ML artifacts +# ============================================================================= +*.pt +*.pth +*.onnx +*.h5 +*.ckpt +*.safetensors +*.npy +*.npz +*.parquet