-
Notifications
You must be signed in to change notification settings - Fork 489
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dockerfile: use moby-bin and cli-bin images for docker binaries #2321
Conversation
Dockerfile
Outdated
FROM moby/moby-bin:$DOCKER_VERSION AS docker-engine | ||
FROM dockereng/cli-bin:$DOCKER_VERSION AS docker-cli |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think there's a need to call out that these are automated builds, not "official releases" (for the occasional reader)?
(We should also really fix those repositories to have a readme to outline their purpose / give the right expectations 😞 - let me see if someone can work on that)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added "for testing" comment on args if that sgty.
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
37adb5a
to
70a28fe
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, yes, that comment should do for now. I created an internal ticket to look at adding README's to those repositories.
ARG DOCKER_VERSION=25.0.2 | ||
ARG GOTESTSUM_VERSION=v1.9.0 | ||
ARG REGISTRY_VERSION=2.8.0 | ||
ARG BUILDKIT_VERSION=v0.12.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like we have some versions to update here (probably fine to be done separate)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
picked from #2307
we can now use
moby/moby-bin
anddockereng/cli-bin
images for testing docker in our integration tests.