-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
49 lines (41 loc) · 958 Bytes
/
.dockerignore
File metadata and controls
49 lines (41 loc) · 958 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
49
# Keep the build context minimal: the image installs dependencies from pyproject.toml/uv.lock
# (gigaam is pulled from git inside the builder) and copies only the gigaam_api package.
# Virtual environments (a fresh .venv is built in the image)
.venv/
venv/
# VCS and the GigaAM checkout cloned for study (not part of the dependency — that comes from git)
.git/
.gitignore
tmp/
# Tests — not needed in the runtime image
tests/
# Model weights and audio artifacts (downloaded/created in the volume, not in the image)
models/
/data/models/
*.ckpt
*.onnx
*.wav
# Secrets and environment (passed via env_file/compose, not baked into the image)
.env
.env.*
!.env.example
# Tool caches
__pycache__/
*.py[cod]
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
coverage.xml
htmlcov/
*.egg-info/
build/
dist/
# OS / IDE
.DS_Store
.idea/
.vscode/
# The project's own Docker artifacts (not needed in the context)
Dockerfile
.dockerignore
docker-compose.yml