-
Notifications
You must be signed in to change notification settings - Fork 2
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
creating main #2
base: main
Are you sure you want to change the base?
Conversation
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. |
No description provided.