You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cursory glance makes me think the problem is as follows. Because of the FROM fedora line in the Dockerfile, the tagged buildah image from quay used in step 2 in the Dockerfile and the fact that the most recent tag is from December 2022, the binary that is built in the first step in the Dockerfile was built in a Fedora 35 image, which has glibc 2.34.
The assumption of the Dockerfile is for the binaries to be built against Fedora 34, which has glibc 2.33, just like the quay.io image used in the second step in the Dockerfile (which seems based on Fedora 35 as well). The fix should be relatively simple: make sure the images used in step 1 and step 2 of the Dockerfile have matching glibc RPMs.
The text was updated successfully, but these errors were encountered: