The whole hunk
from line 214, old and new numbered
/
lines
from line 214
214214 For Linux environments, download the release binary directly.
215215
216216 ```bash
217 VERSION=1.27.0
217 VERSION=1.29.0
218218 OS=$(uname -s | tr '[:upper:]' '[:lower:]')
219219 case $(uname -m) in
220220 x86_64) ARCH=amd64 ;;
from line 252
252252
253253 ```text
254254 FROM your-base-image
255 ARG ANT_VERSION=1.27.0
255 ARG ANT_VERSION=1.29.0
256256 ARG TARGETARCH
257257 RUN ARCH=$([ "$TARGETARCH" = "arm64" ] && echo arm64 || echo amd64) && \
258258 curl -fsSL "https://github.com/anthropics/anthropic-cli/releases/download/v${ANT_VERSION}/ant_${ANT_VERSION}_linux_${ARCH}.tar.gz" \