Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions docs/guides/container-base-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,19 @@ which `agent-assembly` SDK release gets baked in.
| *unset* (default) | Installs the **latest stable** SDK release; if no stable release exists yet, the **latest pre-release**. |
| set to a version | Installs **exactly** that version — e.g. `SDK_VERSION=0.0.1b5`. |

```bash
# Default — let the image resolve the newest appropriate SDK release:
docker build -t my-agent .
=== "Default"

# Pin an exact SDK version for a fully reproducible build:
docker build --build-arg SDK_VERSION=0.0.1b5 -t my-agent .
```
```bash
# Let the image resolve the newest appropriate SDK release:
docker build -t my-agent .
```

=== "Pinned version"

```bash
# Pin an exact SDK version for a fully reproducible build:
docker build --build-arg SDK_VERSION=0.0.1b5 -t my-agent .
```

!!! tip "Published images already pin the SDK"
The images published to GHCR are built with `SDK_VERSION` pinned to a specific SDK
Expand Down