Fix conda installation failure due to SHA1 signature rejection#1576
Open
abdurriq wants to merge 1 commit intodevcontainers:mainfrom
Open
Fix conda installation failure due to SHA1 signature rejection#1576abdurriq wants to merge 1 commit intodevcontainers:mainfrom
abdurriq wants to merge 1 commit intodevcontainers:mainfrom
Conversation
…ntainers#1565) * Initial plan * Fix conda installation by switching from apt repository to direct Miniconda installer Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Add error handling for Miniconda download and installation Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Use APT::Key::GPGVCommand=1 option to bypass SHA1 signature check Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Fix version to 1.2.1 for semantic versioning * Revert to Miniconda installer approach - APT option caused gpgv errors Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Use mktemp for secure temporary file creation Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Replace Miniconda installer with direct .deb package download and apt install Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Fix apt-get install syntax and improve error handling Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Fix package filename - use architecture-specific deb and extract Filename from Packages Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Update version to 1.2.3 Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Fix apt-get install path - remove ./ prefix for absolute paths Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Fix version matching for specific conda versions - handle version suffixes Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com>
Kaniska244
approved these changes
Feb 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Conda installation was failing due to SHA1 signature no longer being accepted. This change switches to downloading the deb directly.
Original PR (merged into another feature branch): #1565