-
Notifications
You must be signed in to change notification settings - Fork 127
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
Update metadata #191
Merged
Merged
Update metadata #191
Conversation
This file contains 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
docker-library-bot
added a commit
to docker-library-bot/official-images
that referenced
this pull request
Mar 5, 2024
Changes: - docker-library/busybox@a20bcbd: Merge pull request docker-library/busybox#191 from infosiftr/cherry-meta - docker-library/busybox@0fd3015: Stop `latest` aliases on riscv64 from pointing to anything but uclibc (for now) - docker-library/busybox@69f51a1: Update metadata for s390x - docker-library/busybox@f29b4e0: Update metadata for ppc64le - docker-library/busybox@8d72643: Update metadata for mips64le - docker-library/busybox@51977e5: Update metadata for i386 - docker-library/busybox@b52155f: Update metadata for arm64v8 - docker-library/busybox@2568e26: Update metadata for arm32v7 - docker-library/busybox@a6e074f: Update metadata for arm32v6 - docker-library/busybox@884455c: Update metadata for arm32v5 - docker-library/busybox@6ded0a4: Merge pull request docker-library/busybox#188 from infosiftr/reproducible-rootfs - docker-library/busybox@7e39d61: Initial `Builder: oci-import` support - docker-library/busybox@644ee1a: Adjust tarball creation to be reproducible
martin-g
pushed a commit
to martin-g/docker-official-images
that referenced
this pull request
Apr 3, 2024
Changes: - docker-library/busybox@a20bcbd: Merge pull request docker-library/busybox#191 from infosiftr/cherry-meta - docker-library/busybox@0fd3015: Stop `latest` aliases on riscv64 from pointing to anything but uclibc (for now) - docker-library/busybox@69f51a1: Update metadata for s390x - docker-library/busybox@f29b4e0: Update metadata for ppc64le - docker-library/busybox@8d72643: Update metadata for mips64le - docker-library/busybox@51977e5: Update metadata for i386 - docker-library/busybox@b52155f: Update metadata for arm64v8 - docker-library/busybox@2568e26: Update metadata for arm32v7 - docker-library/busybox@a6e074f: Update metadata for arm32v6 - docker-library/busybox@884455c: Update metadata for arm32v5 - docker-library/busybox@6ded0a4: Merge pull request docker-library/busybox#188 from infosiftr/reproducible-rootfs - docker-library/busybox@7e39d61: Initial `Builder: oci-import` support - docker-library/busybox@644ee1a: Adjust tarball creation to be reproducible
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.
This cherry-picks all the metadata commits from the (now successful) assorted
meta-*
branches (as discussed/planned over in #188).The command I used to generate this branch:
git branch --list --remotes --format '..%(refname:short)' docker-library/meta-* | grep -v riscv64 | tac | xargs -rt git cherry-pick -x
Output then looks something like:
(Assumptions there being that my local "upstream"/"origin" remote is named
docker-library
and I have done a freshgit fetch -p docker-library
and my local fetch config for thedocker-library
remote includesfetch = +refs/heads/meta-*:refs/remotes/docker-library/meta-*
)Notably, I have not included
riscv64
here because I do not actually believe it will stay reproducible over time (due to being based on Debian Unstable + Alpine Edge and having to do hacks to even get it to build successfully right now; see 10a1d6f, especiallylatest/musl/Dockerfile.builder
/ docker-library/oi-janky-groovy@5143023).