-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.dockerignore
More file actions
52 lines (42 loc) · 829 Bytes
/
Copy path.dockerignore
File metadata and controls
52 lines (42 loc) · 829 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
50
51
52
# .dockerignore — keep `docker build -f Dockerfile.build` context lean.
#
# We only need:
# scripts/wasmforge-build.sh
# Everything else is mounted at runtime via -v /wasmforge:... so excluding
# from the build context speeds up `docker build` significantly.
# Build artifacts
out/
test/
testdata/
# Compiled binaries (rebuilt inside container from source)
wasmforge
wasmforge.exe
darwin_interop
dotnet-runner
gen-build-assets
gen-ghost-profile
# Git
.git
.github
# Editor / system noise
.idea
.vscode
.DS_Store
*.swp
*.swo
# Generated artifacts
*.tar.gz
*.zip
*.so
*.dylib
# Submodules and vendored deps that are mounted at runtime
wazero/
guest/
# Documentation (the entrypoint doesn't need any of it)
docs/
# Examples
examples/
# Claude scaffolding
.claude/
# Go module cache (inside container; not host)
go.sum