Replies: 1 comment 9 replies
-
docker run --rm -it mcr.microsoft.com/dotnet/sdk:8.0-jammy apt list | grep krb
libgssapi-krb5-2/now 1.19.2-2ubuntu0.3 arm64 [installed,local]
libkrb5-3/now 1.19.2-2ubuntu0.3 arm64 [installed,local]
libkrb5support0/now 1.19.2-2ubuntu0.3 arm64 [installed,local] Those are the libraries that are helping you. This is the pattern for adding packages with chiseled: rockcrafters/dotnet#21 Related: #4751 |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm not sure if this is the correct place for this. I'm attempting to use kerberos in a dotnet 8 image to connect to sql server.. this currently works in a regular aspnet jammy 8 image, however when chiseling out libgssapi-krb5-2 in a chiseled-extra image I receive an error:
My gut is telling me there is a missing dependency when chiseleing out the gss and krb5 libs. When comparing with the regular ASP net images one big glaring difference is all the dependencies are installed to /usr/lib and /lib is symlinked to /usr/lib..
With chisel since there is no usrmerge library's are in a mix of both folders and I'm wondering if one of the native libraries is looking in the wrong place. Has anyone gotten this working?
Beta Was this translation helpful? Give feedback.
All reactions