-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy path.dockerignore
More file actions
34 lines (31 loc) · 841 Bytes
/
Copy path.dockerignore
File metadata and controls
34 lines (31 loc) · 841 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
# Keep the build context small + reproducible. The Rust build needs the source
# tree (crates/, Cargo.toml, Cargo.lock, rust-toolchain.toml, build.rs files
# and their crate-local data) but none of these.
#
# Patterns are anchored to the context root (leading `/`) so we never
# accidentally drop a file a crate's build.rs/include_str! depends on deeper
# in the tree (e.g. crate-local *.tsv golden fixtures).
.git
.claude
/.dockerignore
# Build artifacts / target dirs (regenerated in-image).
/target
target
**/target
**/target-*
*.profraw
# Non-workspace top-level trees not needed to compile the `postgres` binary
# (verified: no workspace member and no crate build.rs/include reaches them).
/bench
/crash-simulator
/dst
/fixtures
/fuzz
/regress
/wasm
/CATALOG.tsv
/GOAL.md
/RENAME-MAP.md
/fleet-results
# Editor / OS cruft.
.DS_Store