skip to Main Content

Dockerise ASP.NET Core app with Alpine image

I want my dockerised ASP.NET Core 7 app based on Alpine (not ASP.NET Core Runtime). MyApp.csproj contains: <PublishSingleFile>true</PublishSingleFile> <RuntimeIdentifier>linux-musl-x64</RuntimeIdentifier> Dockerfile contains: FROM alpine But when I start a container, I get: Error relocating /dist/MyApp: __cxa_pure_virtual: symbol not found Error relocating…

VIEW QUESTION
Back To Top
Search