Files
rutster/deploy/.dockerignore
Aaron D. Lee c772485f92
Some checks failed
CI / fmt (pull_request) Successful in 1m22s
CI / clippy (pull_request) Successful in 3m46s
CI / test (1.85) (pull_request) Failing after 8m22s
CI / test (stable) (pull_request) Failing after 8m25s
CI / deny (pull_request) Failing after 1m24s
CI / sim-bench (stable) (pull_request) Failing after 11m2s
CI / image-build (4 images) (pull_request) Has been skipped
CI / smoke (all-in-one TLS sim call) (pull_request) Has been skipped
CI / smoke (T2 compose four-service) (pull_request) Has been skipped
CI / smoke (caddy reload during live call, zero drops) (pull_request) Has been skipped
CI / twilio-live (manual only) (pull_request) Has been skipped
deploy slice B + F: deploy/ artifacts + image-build + container smoke CI + tag-push publish (#26)
Co-authored-by: Aaron D. Lee <himself@adlee.work>
Co-committed-by: Aaron D. Lee <himself@adlee.work>
2026-07-06 19:53:32 +00:00

49 lines
1.2 KiB
Plaintext

# deploy/.dockerignore — prune the build context for `docker buildx build`
# invocations against deploy/Dockerfile. Without this, the context would
# ship target/ (~5 GB on warm dev), .git/, docs/, .github/, etc. — minutes
# of pointless context-transfer before the first RUN step.
#
# IMPORTANT: patterns are relative to the build context root (the path
# passed to `docker buildx build`, which is the repo root for this Dockerfile
# since we use `-f deploy/Dockerfile .`). So `target/` matches
# /target/ at the repo root AND `**/target/` catches /crates/*/target/.
# Rust build artifacts.
target/
**/target/
# Git history + CI configuration.
.git/
.github/
# Editor + agent working state.
.vscode/
.idea/
.opencode/
*.swp
*.swo
.DS_Store
# Environment files (never ship secrets — .env.example is the ONLY .env*
# file that should reach the build context, and it has no secrets by design).
.env
.env.local
.env.*.local
# Documentation (the Dockerfile doesn't read any .md file but README).
docs/
*.md
!README.md
# Plans + specs (not needed at image build time — operator reads from the
# repo, not the container).
docs/superpowers/
# Logs + OS junk.
*.log
tmp/
*.tmp
# Tmp artifacts from cargo-deny / cargo-cache.
deny.toml.lock