You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Has something changed with the docker images, I am unable to build today as I receive a spate of these errors
error NU3028: Package 'Microsoft.Extensions.DependencyInjection 5.0.0' from source 'https://api.nuget.org/v3/index.json': The author primary signature's timestamp found a chain building issue: UntrustedRoot: self signed certificate in certificate chain
error NU3028: Package 'Microsoft.Extensions.Configuration 5.0.0' from source 'https://api.nuget.org/v3/index.json': The author primary signature's timestamp found a chain building issue: UntrustedRoot: self signed certificate in certificate chain
This is using a docker file that has the following snippet
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /src
COPY ["nuget.config","."]
COPY ["HTMLBuilder/HTMLBuilder.csproj", "HTMLBuilder/"]
RUN dotnet restore "HTMLBuilder/HTMLBuilder.csproj" --configfile nuget.config
COPY . .
WORKDIR "/src/HTMLBuilder"
RUN dotnet build "HTMLBuilder.csproj" -c Release -o /app/tool
The text was updated successfully, but these errors were encountered:
Has something changed with the docker images, I am unable to build today as I receive a spate of these errors
error NU3028: Package 'Microsoft.Extensions.DependencyInjection 5.0.0' from source 'https://api.nuget.org/v3/index.json': The author primary signature's timestamp found a chain building issue: UntrustedRoot: self signed certificate in certificate chain
error NU3028: Package 'Microsoft.Extensions.Configuration 5.0.0' from source 'https://api.nuget.org/v3/index.json': The author primary signature's timestamp found a chain building issue: UntrustedRoot: self signed certificate in certificate chain
This is using a docker file that has the following snippet
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /src
COPY ["nuget.config","."]
COPY ["HTMLBuilder/HTMLBuilder.csproj", "HTMLBuilder/"]
RUN dotnet restore "HTMLBuilder/HTMLBuilder.csproj" --configfile nuget.config
COPY . .
WORKDIR "/src/HTMLBuilder"
RUN dotnet build "HTMLBuilder.csproj" -c Release -o /app/tool
The text was updated successfully, but these errors were encountered: