I have an existing project that is using a specific SDK tag (6.0.3) in the Dockerfile. It works fine, but when I tried updating it to use the floating 6.0 tag, or the latest 6.0.400 tag, it fails:
/app/src/redacted/redacted.csproj : error NU1803: You are running the 'restore' operation with an 'HTTP' source, 'http://redacted/repository/nuget/'. Non-HTTPS access will be removed in a future version. Consider migrating to an 'HTTPS' source. [/app/redacted.sln]
Failed to restore /app/src/redacted.csproj (in 77 ms).
The command '/bin/sh -c dotnet restore' returned a non-zero code: 1
ERROR: Service 'dependencies-build' failed to build : Build failed
Why are the HTTP warnings causing the build to fail on the 6.0 tag? I thought Nuget HTTP support was not going to be removed until a later version.