feat: Add decoupled-docker support for ai-studio release pipeline#436
Open
buger wants to merge 1 commit into
Open
feat: Add decoupled-docker support for ai-studio release pipeline#436buger wants to merge 1 commit into
buger wants to merge 1 commit into
Conversation
This commit adds support for ai-studio's modern, decoupled release pipeline that simplifies Docker image builds by: 1. Adding `decoupled-docker` feature flag: - Skips CI ECR login and push steps (no AWS credentials needed) - Skips Cloudsmith registry login - Uses only DockerHub (DHRepo) for image distribution - Outputs reference tag_metadata instead of ci_metadata 2. Adding `langchaingo-checkout` feature flag: - Adds a checkout step for the lonelycode/langchaingo repository - Required dependency for ai-studio builds 3. Enabling `distroless` feature for ai-studio: - Uses ci/Dockerfile.distroless for smaller, more secure images The decoupled approach means Docker images are built directly by GitHub Actions (docker/build-push-action) after GoReleaser completes the binary builds with --skip=docker, rather than having GoReleaser manage Docker builds through its dockers/docker_manifests pipes. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
buger
enabled auto-merge (squash)
February 11, 2026 13:55
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
This PR adds support for ai-studio's modern, decoupled release pipeline by introducing new feature flags that simplify Docker image builds:
decoupled-docker: Skips CI ECR and Cloudsmith registry pushes, using only DockerHub for image distributionlangchaingo-checkout: Adds checkout step for the lonelycode/langchaingo dependencydistroless: Enables distroless Dockerfile for smaller, more secure imagesChanges
New Feature Flags
decoupled-docker:tag_metadata_*instead ofci_metadata_*langchaingo-checkout:lonelycode/langchaingorepositoryConfig Changes
Updated ai-studio configuration to enable:
decoupled-dockerdistrolesslangchaingo-checkoutTest plan
Generated output preview
The generated release.yml for ai-studio now:
ci/Dockerfile.distrolessfor Docker builds🤖 Generated with Claude Code