从我的项目文件创建新的 docker 映像时出错

Kar*_*ran 5 c# docker asp.net-core visual-studio-2017

在我的 Windows 10 计算机上,当我尝试创建解决方案/项目的 docker 映像时,它给出以下错误(这是完整日志,错误在末尾)

Sending build context to Docker daemon  1.363MB
Step 1/20 : FROM mcr.microsoft.com/dotnet/core/aspnet:2.1-stretch-slim AS base
---> bbfbcd874370
Step 2/20 : WORKDIR /app
---> Using cache
---> 6aa13d5c0c78
Step 3/20 : EXPOSE 80
 ---> Using cache
 ---> 80df41e66b51
Step 4/20 : EXPOSE 443
 ---> Using cache
 ---> e6b48dd0ebe8
Step 5/20 : FROM mcr.microsoft.com/dotnet/core/sdk:2.1-stretch AS build
 ---> 83e4b70d6dc1
Step 6/20 : ARG BuildConfiguration=Release
 ---> Using cache
 ---> 1f78c91d39f1
Step 7/20 : WORKDIR /src
 ---> Using cache
 ---> 213aa5f648e4
Step 8/20 : COPY ["NuGet.config", "."]
 ---> Using cache
 ---> d8843fccc7af
Step 9/20 : COPY ["MyProj.csproj", "ServiceProject/"]
 ---> Using cache
 ---> af245be6312e
Step 10/20 : RUN dotnet restore  --configfile NuGet.config "MyProj.csproj"
 ---> Running in 0582b332eab7
MSBUILD : error MSB1009: Project file does not exist.
Switch: MyProj.csproj
The command '/bin/sh -c dotnet restore  --configfile NuGet.config "MyProj.csproj"' returned a non-zero code: 1
Run Code Online (Sandbox Code Playgroud)

Dockerfile如下

FROM mcr.microsoft.com/dotnet/core/aspnet:2.1-stretch-slim AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443

FROM mcr.microsoft.com/dotnet/core/sdk:2.1-stretch AS build
ARG BuildConfiguration=Release
WORKDIR /src
COPY ["NuGet.config", "."]
COPY ["MyProj.csproj", "NewProj/"]
RUN dotnet restore  --configfile NuGet.config "MyProj.csproj"
COPY . .
WORKDIR "/src/MyService"
RUN dotnet build "MyProj.csproj" -c ${BuildConfiguration} -o /app --no-restore

FROM build AS publish
ARG BuildConfiguration=Release
RUN dotnet publish "MyProj.csproj" -c ${BuildConfiguration} -o /app --no-restore

FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "MyProj.dll"]
Run Code Online (Sandbox Code Playgroud)

文件 MyProj.csproj 存在于文件夹中是的,我在 AdminMode 下运行 powershell 我也尝试过提供完整路径,但这也不起作用

我尝试了 docker 文档和 stackoverflow,但没有提及此错误。如果可能,请提供逐步解决方案,提前致谢

Jle*_*HeP 3

将我的评论作为答案 - 您最初的问题是 csproj 文件的位置。你跑

COPY ["NuGet.config", "."]
COPY ["MyProj.csproj", "NewProj/"]
Run Code Online (Sandbox Code Playgroud)

因此 MyProj.csproj 位于“NewProj/”。所以当你跑步时

RUN dotnet restore  --configfile NuGet.config "MyProj.csproj"
Run Code Online (Sandbox Code Playgroud)

找不到 MyProj。选项是提供项目文件的正确路径或将其复制到与 nuget.config 相同的位置。

至于你的以下错误 - 看起来像

/usr/share/dotnet/sdk/2.1.801/NuGet.targets(525,5): 错误:值不能为 null 或空字符串。[/src/MyProj.csproj]

/usr/share/dotnet/sdk/2.1.801/NuGet.targets(525,5):错误:参数名称:用户名[/src/MyProj.csproj]

需要“用户名”才能访问您正在使用的 nuget 源之一。尝试将用户名/密码添加到 nuget.config 文件 - https://learn.microsoft.com/en-us/nuget/reference/nuget-config-file#package-source-sections