-
Notifications
You must be signed in to change notification settings - Fork 835
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
Fix Docker image failing to start Besu with NoClassDefFoundError for org.xerial.snappy.Snappy #5462
Conversation
…appy library Signed-off-by: Jason Frame <[email protected]>
|
Probably doesn't use snappy, but reckon we should do https://github.com/hyperledger/besu/blob/main/ethereum/evmtool/src/main/docker/Dockerfile for completeness? |
Seems like a sensible thing to do. Will update it. |
…ding snappy library Signed-off-by: Jason Frame <[email protected]>
Signed-off-by: Jason Frame <[email protected]>
Signed-off-by: Jason Frame <[email protected]>
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
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
Signed-off-by: Jason Frame <[email protected]>
… for evmtool Signed-off-by: Jason Frame <[email protected]>
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
Signed-off-by: Jason Frame <[email protected]>
Signed-off-by: Jason Frame <[email protected]>
…org.xerial.snappy.Snappy (hyperledger#5462) Signed-off-by: Jason Frame <[email protected]>
…org.xerial.snappy.Snappy (hyperledger#5462) Signed-off-by: Jason Frame <[email protected]>
PR description
Fix Besu failing to start when using Docker 23.4.0 due to
NoClassDefFoundError
fororg.xerial.snappy.Snappy
.The cause was that we are using an older version of glibc for some Docker images due to the older version of the Ubuntu distro being used.
Changes
Related to the update of the snappy library xerial/snappy-java#417 (comment)
Fixed Issue(s)
fixes #5463