-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy path.dockerignore
More file actions
50 lines (45 loc) · 1.17 KB
/
Copy path.dockerignore
File metadata and controls
50 lines (45 loc) · 1.17 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
# What the build context carries. The image installs raven from this tree
# (editable, the way a checkout runs), so the runtime source has to be here --
# raven/, agents/, plugins-dist/, i18n/ and the packaging manifests all stay.
# Everything listed below is rebuilt inside the image, host-specific, or a tree
# the runtime never opens.
.git
.github
.venv
**/.venv
**/node_modules
**/__pycache__
**/*.pyc
**/.pytest_cache
**/.ruff_cache
**/.mypy_cache
**/.vitest-cache
**/.uv-cache
# Assembled by the web stage. A host build copied in would shadow it, and the
# two are not always the same commit.
ui-web/dist
ui-web/.modern
# Not reached from `raven serve` / `raven gateway`.
ui-tui
bridge/dist
benchmarks
demos
docs
evolver
tests
# The retired vendored fork tree (500+ MB). The products the runtime discovers
# live in agents/; see raven/agent/subagent/vendored_agents.py.
subagents
dist
build
htmlcov
coverage.xml
coverage.json
coverage-baseline-candidate.json
# Host state and credentials. docker/.env is the shipped template and is the
# one env file the image is allowed to see -- and even that is read by Compose
# on the host, not baked in.
.env
**/*.env
!docker/.env
docker/.env.local