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
fail:` Microsoft.AspNetCore.Server.Kestrel[13]
Connection id "0HN7UONQRGOH1", Request id "0HN7UONQRGOH1:00000002": An unhandled exception was thrown by the application.
System.TypeInitializationException: The type initializer for 'Microsoft.Data.Sqlite.SqliteConnection' threw an exception.
---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.
---> System.DllNotFoundException: Unable to load shared library 'e_sqlite3' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: Error loading shared library libe_sqlite3: No such file or directory
at SQLitePCL.SQLite3Provider_e_sqlite3.NativeMethods.sqlite3_libversion_number()
at SQLitePCL.SQLite3Provider_e_sqlite3.SQLitePCL.ISQLite3Provider.sqlite3_libversion_number()
at SQLitePCL.raw.SetProvider(ISQLite3Provider imp)
at SQLitePCL.Batteries_V2.Init()
--- End of inner exception stack trace ---
Problem seems obvious (not finding a shared library).
However library seems to be there ( ./runtimes/osx-arm64/native/libe_sqlite3.dylib ) :
Not sure if it is in the right place.
I tried rebuilding the image from scratch on my laptop ( docker compose -f docker-compose.yml -f arm64.yml build --pull ), and I'm getting the same result (Yes, I'm sure it is using the image I built myself).
I'm not a C# expert, even less building C# stuff for MacOS. Any help would be appreciated.
The text was updated successfully, but these errors were encountered:
I'm getting this on the logs:
Problem seems obvious (not finding a shared library).
However library seems to be there (
./runtimes/osx-arm64/native/libe_sqlite3.dylib
) :Not sure if it is in the right place.
I tried rebuilding the image from scratch on my laptop (
docker compose -f docker-compose.yml -f arm64.yml build --pull
), and I'm getting the same result (Yes, I'm sure it is using the image I built myself).I'm not a C# expert, even less building C# stuff for MacOS. Any help would be appreciated.
The text was updated successfully, but these errors were encountered: