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
The error message indicates that the version of GLIBC (GNU C Library) required by the application is not available in the base image being used. Specifically, it mentions that GLIBC_2.29, GLIBC_2.33, and GLIBC_2.34 are not found, which are required by the application.
This issue occurs because the base image being used (docker.io/bitnami/minideb:buster) might have an older version of GLIBC, and the application or one of its dependencies requires a newer version that is not present in the base image.
To resolve this issue, you may need to either update the base image to one that includes the required version of GLIBC, or modify the application or its dependencies to be compatible with the existing version of GLIBC in the base image. Additionally, you may also consider using a different base image that already includes the required version of GLIBC.
The text was updated successfully, but these errors were encountered:
benzntech
changed the title
The error message indicates that the version of GLIBC (GNU C Library) required by the application is not available in the base image being used. Specifically, it mentions that GLIBC_2.29, GLIBC_2.33, and GLIBC_2.34 are not found, which are required by the application.
GLIBC Version Compatibility Issue in Docker Image "docker.io/bitnami/minideb:buster"
Feb 2, 2024
This issue occurs because the base image being used (docker.io/bitnami/minideb:buster) might have an older version of GLIBC, and the application or one of its dependencies requires a newer version that is not present in the base image.
To resolve this issue, you may need to either update the base image to one that includes the required version of GLIBC, or modify the application or its dependencies to be compatible with the existing version of GLIBC in the base image. Additionally, you may also consider using a different base image that already includes the required version of GLIBC.
Originally posted by @benzntech in #2 (comment)
The text was updated successfully, but these errors were encountered: