Schweregradcode Beschreibung Projektdateizeilen-Unterdrückungsstatus
Fehler CTC1014 Docker-Befehl fehlgeschlagen mit Exit-Code 1.
hcsshim::PrepareLayer – fehlgeschlagen, fehlgeschlagen in Win32: Falsch
Unterhalb meiner Docker-Datei
Code: Select all
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-nanoserver-1903 AS base
WORKDIR /app
EXPOSE 8080
EXPOSE 443
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-nanoserver-1903 AS build
WORKDIR /src
COPY ["RegexTesterApi/RegexTesterApi.csproj", "RegexTesterApi/"]
RUN dotnet restore "RegexTesterApi/RegexTesterApi.csproj"
COPY . .
WORKDIR "/src/RegexTesterApi"
RUN dotnet build "RegexTesterApi.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "RegexTesterApi.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "RegexTesterApi.dll"]
Was verursacht eigentlich den Fehler?
Mobile version