Add cached image quickstart
lint / lint (push) Failing after 1m57s
test / unit (pull_request) Successful in 57s
test / integration (pull_request) Successful in 17s
test / coverage (pull_request) Successful in 1m7s

This commit is contained in:
2026-07-09 17:25:50 +00:00
parent ab394a7760
commit 4d5bb8f2fc
16 changed files with 440 additions and 10 deletions
+3
View File
@@ -75,6 +75,9 @@ class BottleSpec:
# Ordered bottle names selected at launch (issue #269). When non-empty
# they are merged in order and replace the agent's `bottle:` field.
bottle_names: tuple[str, ...] = ()
# Image startup policy. "fresh" preserves the normal build path;
# "cached" reuses the current local image/artifact without rebuilding.
image_policy: str = "fresh"
@dataclass(frozen=True)