我已经在.netcore程序中使用了grpc,我想构建一个docker镜像来使用它。
这就是我在dockerfile中构建程序的方式
RUN dotnet publish -r linux-musl-x64 --no-restore -c Release -o /out
然后像我的图像一样复制到其他图像
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY --from=build /out ./
ENTRYPOINT ["./MyService"]
问题与运行时映像有关。如果我使用“ microsoft / dotnet:2.2-runtime-deps-alpine”没有问题,但是如果使用“ mcr.microsoft.com/dotnet/core/runtime-deps:2.2-alpine3.9”
我收到一条错误消息。
Unhandled Exception: System.IO.IOException: Error loading native library "/app/libgrpc_csharp_ext.x64.so". Symbol not found: PAL_dlerror
at Grpc.Core.Internal.UnmanagedLibrary..ctor(String[] libraryPathAlternatives)
at Grpc.Core.Internal.NativeExtension.LoadUnmanagedLibrary()
at Grpc.Core.Internal.NativeExtension.LoadNativeMethods()
at Grpc.Core.Internal.NativeExtension..ctor()
at Grpc.Core.Internal.NativeExtension.Get()
at Grpc.Core.GrpcEnvironment.GrpcNativeInit()
at Grpc.Core.GrpcEnvironment..ctor()
at Grpc.Core.GrpcEnvironment.AddRef()
at Grpc.Core.Server..ctor(IEnumerable`1 options)
at MyService.Program.Main(String[] args) in /code/MyService/Program.cs:line 32
我该如何解决?这两个图像有什么区别?我只能在docker hub
上找到第二个Dockerfile