Файл игнорирования сборки контейнера
This commit is contained in:
138
.dockerignore
Normal file
138
.dockerignore
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user