Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. RUN dotnet publish -r linux-musl-x64 --no-restore -c Release -o /out
  2.  
  3. RUN apk add --no-cache libc6-compat
  4. WORKDIR /app
  5. COPY --from=build /out ./
  6. ENTRYPOINT ["./MyService"]
  7.  
  8. Unhandled Exception: System.IO.IOException: Error loading native library "/app/libgrpc_csharp_ext.x64.so". Symbol not found: PAL_dlerror
  9. at Grpc.Core.Internal.UnmanagedLibrary..ctor(String[] libraryPathAlternatives)
  10. at Grpc.Core.Internal.NativeExtension.LoadUnmanagedLibrary()
  11. at Grpc.Core.Internal.NativeExtension.LoadNativeMethods()
  12. at Grpc.Core.Internal.NativeExtension..ctor()
  13. at Grpc.Core.Internal.NativeExtension.Get()
  14. at Grpc.Core.GrpcEnvironment.GrpcNativeInit()
  15. at Grpc.Core.GrpcEnvironment..ctor()
  16. at Grpc.Core.GrpcEnvironment.AddRef()
  17. at Grpc.Core.Server..ctor(IEnumerable`1 options)
  18. at MyService.Program.Main(String[] args) in /code/MyService/Program.cs:line 32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement