fix(openclaw): pin to 2026.4.25-beta.11 (upstream skipped fat 4.25 stable)#405
Merged
Conversation
…table tag PR #404 set the pin to alpine/openclaw:2026.4.25, but upstream never published that exact tag — only 2026.4.25-slim and the 2026.4.25-beta.X series have published fat (non-slim) variants. Our Dockerfile extends with apt-get layers (ffmpeg, ripgrep, 1password-cli, etc.) so the slim base would break our skill bundling. Beta.11 is the latest 2026.4.25-line tag with the fat variant we need. Verified via Docker Hub API: curl -sL 'https://hub.docker.com/v2/repositories/alpine/openclaw/tags?name=2026.4.25' build-openclaw-image.yml run 25031784091 failed with: ERROR: docker.io/alpine/openclaw:2026.4.25: not found Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR #404 set
alpine/openclaw:2026.4.25as the pin, but upstream never published that exact tag. Thebuild-openclaw-imagerun on the merge commit failed with:Why
Upstream changed their release publishing policy. Verified via Docker Hub API — the only
2026.4.25-linetags that exist are:2026.4.25-slim(stable, slim)2026.4.25-beta.1through2026.4.25-beta.11(with both fat and slim variants)Our Dockerfile extends with apt-get layers (ffmpeg, ripgrep, 1password-cli, gnupg, jq, etc.) so we need the fat base.
2026.4.25-beta.11is the most recent fat-variant tag in the 4.25 line.Test plan
build-openclaw-imagesucceeds with the new pindev.tag/prod.tagto the actual2026.4.25-beta.11-<sha>once the build lands in ECR🤖 Generated with Claude Code