-
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) · 872 Bytes
/
Copy path.dockerignore
File metadata and controls
49 lines (41 loc) · 872 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 tight: only the engine sources the Dockerfile
# actually COPYs into the builder stage need to ship. Everything else
# is either unrelated to the engine (frontend, design mockups, docs)
# or local state (build directories, IDE caches).
# Local build artifacts.
build/
build-*/
*.o
*.obj
*.a
*.so
*.dylib
*.dSYM
compile_commands.json
# Frontend (Cloudflare Pages builds it separately).
frontend/
# Design and documentation surface.
design-mockups/
docs/
README.md
*.md
# Bench artifacts.
bench/baseline.json
# Test directory: the engine build switches MERIDIAN_BUILD_TESTS off.
tests/
# Driver binaries the engine container does not ship.
apps/bench/
apps/replay/
# Repository plumbing and editor state.
.git/
.github/
.gitignore
.gitattributes
.gitmodules
.vscode/
.idea/
.cache/
# Python and tool caches.
__pycache__/
*.pyc
.pytest_cache/