failed to register layer: Error processing tar file(exit status 1): link /Files/Program Files/common files/Microsoft Shared/Ink/en-US/micaut.dll.mui /Files/Program Files (x86)/common files/Microsoft Shared/ink/en-US/micaut.dll.mui: no such file or directory
Docker file: FROM mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019 AS base WORKDIR /app EXPOSE 8080
FROM mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019 AS build WORKDIR /src COPY *.csproj .
RUN dotnet restore "xyz.csproj" COPY . . WORKDIR "/src/." RUN dotnet build "xyz.csproj" -c Release -o /app/build
FROM build AS publish RUN dotnet publish "xyz.csproj" -c Release -o /app/publish
FROM base AS final WORKDIR /app COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "xyz.dll"]