forked from Tracer-Cloud/opensre
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.bench.dockerignore
More file actions
73 lines (64 loc) · 1.59 KB
/
Dockerfile.bench.dockerignore
File metadata and controls
73 lines (64 loc) · 1.59 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Per-Dockerfile dockerignore for Dockerfile.bench (BuildKit feature).
# Overrides the repo-root .dockerignore, which excludes `tests` entirely
# (correct for the production Dockerfile, wrong for the bench Dockerfile).
# ---- Standard junk to exclude from any build context -------------------- #
.git
.gitignore
docker-compose.yml
docker-compose.*.yml
node_modules/
**/__pycache__/
*.pyc
*.pyo
*.pyd
*.log
*.tmp
*.swp
.DS_Store
# ---- Local-only state --------------------------------------------------- #
.env
.env.*
*.local
.venv/
.venv-devcontainer/
.python-version
*.egg-info/
# ---- Build / test artifacts -------------------------------------------- #
dist/
build/
.cache/
.coverage*
htmlcov/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.terraform/
# ---- IDE / editor ------------------------------------------------------- #
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# ---- Repo-level dirs not needed in the bench image --------------------- #
infra/
docs/
packaging/
.github/
.claude/
.aider*
# ---- Tests: exclude everything EXCEPT bench-related -------------------- #
# Order matters: blanket exclusion first, then negations.
tests/*
!tests/__init__.py
!tests/benchmarks
# Exclude the downloaded State Snapshot dataset (~2.7 GB). It is
# git-ignored and downloaded from Hugging Face at task start. Without
# this exclusion, the image bloats to ~3.75 GB.
tests/benchmarks/cloudopsbench/benchmark/
tests/benchmarks/cloudopsbench/.cache/
# ---- Local dev artifacts ------------------------------------------------ #
plans/
tasks/
.worktrees/
app/memories/
# ---- Self ---- #
Dockerfile.bench.dockerignore