I have a .Net Core 3.1.200 that reference another code that is written in .Net Standard 1.3 (shared with .Net Framework apps).
When I try to push image to a docker it fails on all sorts of memory faults. Image was running perfectly till the reference was added. Here is my docker file:
FROM mcr.microsoft.com/dotnet/core/runtime:3.1
COPY bin/publish/ /app-docker-image
WORKDIR /app-docker-image
ENTRYPOINT ["dotnet", "app.dll"]
Is there a way to make it work on a Linux docker?
Thanks!