-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.dockerignore
More file actions
48 lines (40 loc) · 889 Bytes
/
.dockerignore
File metadata and controls
48 lines (40 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# ── Repo-root Docker build context ──
# All Python services (CRUD + agents) use repo root as build context
# so the lib can be built from source via a multi-stage Dockerfile.
# Exclude everything that is NOT needed inside any Docker build.
# Version control and IDE
.git/
.azure/
.githooks/
.github/
.vscode/
.tmp/
# Documentation and static site
docs/
mkdocs/
# Infrastructure and Kubernetes manifests (not needed at build time)
.infra/
.kubernetes/
scripts/
# Frontend (separate SWA build)
apps/ui/
# Test directories (each app's tests/ lives outside src/)
**/tests/
tests/
# Python caches and build artifacts
**/__pycache__/
**/.venv/
**/*.egg-info/
**/.mypy_cache/
**/.pytest_cache/
**/.ruff_cache/
htmlcov/
.coverage
coverage-summary.json
# Pre-built wheels (lib is now built in Docker multi-stage)
**/*.whl
# OS and editor files
**/.DS_Store
**/Thumbs.db
*.swp
*.swo