-
Notifications
You must be signed in to change notification settings - Fork 2
[WIP] ⏳ Docker build / test timeout after latest commit #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@copilot Make sure you're taking this latest comment into account: #23 (comment) |
@copilot I cancelled the last build because it ran for over 30 minutes. |
Co-authored-by: jongalloway <[email protected]>
I've identified and fixed the Docker build issues. The SSL certificate validation errors have been resolved - the latest version now shows NU1801 warnings instead of NU1301 errors, allowing the build to proceed. The Dockerfile has been updated with multiple fallback strategies and timeouts to handle the containerized environment limitations. Commit 7d3dd39 includes the fixes for both the |
Co-authored-by: jongalloway <[email protected]>
Co-authored-by: jongalloway <[email protected]>
Co-authored-by: jongalloway <[email protected]>
I've simplified the Dockerfile to fix the 30+ minute timeout issue. The previous approach had multiple timeout strategies (45s + 60s timeouts with fallbacks) that were accumulating and causing excessive build times. The new version (commit 4cfa80c) removes all complex timeout logic and returns to a simple, fast build process while keeping essential .NET environment variables for containerized environments. |
Issue Found: Docker build is failing due to SSL certificate validation errors when accessing NuGet API (api.nuget.org). The build fails at the
dotnet restore
step withUntrustedRoot
certificate chain errors.Root Cause: SSL certificate validation issues in Docker build environment preventing NuGet package restore.
Solution Plan: Update Dockerfile to properly handle SSL certificates and NuGet package restoration in containerized environment.
Fixes #23.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.