-
Notifications
You must be signed in to change notification settings - Fork 66
[ML] Update Linux builder Docker container for 9.0 #2773
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
Merged
Merged
Conversation
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
edsavage
reviewed
Oct 30, 2024
edsavage
reviewed
Oct 30, 2024
edsavage
reviewed
Oct 30, 2024
edsavage
reviewed
Oct 30, 2024
edsavage
approved these changes
Oct 30, 2024
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
I've just left a few comments here and there.
…l-cpp into linux-docker-upgrade
|
jan-elastic
added a commit
that referenced
this pull request
Nov 12, 2024
This reverts commit b9a79b2.
jan-elastic
added a commit
that referenced
this pull request
Nov 12, 2024
valeriy42
added a commit
that referenced
this pull request
Dec 3, 2024
This is a rework of #2773 . Additionally, I removed the dependency on liblzma when building the boost library since some of the production docker containers don't have liblzma installed. I added arguments like --without-lzma, but for Boost, it didn't lead to the desired effect. Hence, I had to resolve to temporarily rename the system libraries: RUN \ for i in $(ls /lib64/libzstd.*); do mv $i "$i.bak" ; done && \ for i in $(ls /lib64/liblzma.*); do mv $i "$i.bak" ; done
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 PR updates all Linux-related Dockerfiles and tutorials with the latest dependencies, libraries, and C++ compiler versions.
Changes
Dockerfile Updates:
centos:7
torockylinux:8
to maintain compatibility with RHEL in the future.binutils
2.37 -> 2.41libxml2
2.9.14 -> 2.10.4.patchelf
0.13 -> 0.18.0python
3.10.0 -> 3.12.7cmake
3.19.2 -> 3.30.5Tutorial Updates:
Buildkite: