Dotnet restore Docker fail
问题 There is problem with Docker and command dotnet restore. I have the docker file: FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base WORKDIR /app EXPOSE 80 EXPOSE 443 FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build WORKDIR /src COPY ["AuthAPI/AuthAPI.csproj", "AuthAPI/"] COPY ["CommonCoreLibrary/CommonCoreLibrary.csproj", "CommonCoreLibrary/"] RUN dotnet restore "AuthAPI/AuthAPI.csproj" COPY . . WORKDIR "/src/AuthAPI" RUN dotnet build "AuthAPI.csproj" -c Release -o