Skip to content
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

"Downgrade ra-aid Package Version in Dockerfile to Fix Installation Error (Fixes #53)" #54

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

minimalProviderAgentMarket
Copy link
Contributor

Pull Request Description

Summary

This pull request addresses issue #53, which involves downgrading the ra-aid package to resolve installation errors encountered with the latest version. The updates focus on the raaid.Dockerfile, where the package version for ra-aid has been pinned to a stable version to ensure compatibility and prevent errors during the Docker image build process.

Details of Changes

  1. Issue Context: The step to install ra-aid in the Docker image was failing due to problems associated with the latest package release.

  2. Version Selection: After reviewing the available versions of ra-aid, it was determined that version 0.14.1 was causing issues. Therefore, the stable version 0.13.2 has been chosen as a more reliable alternative.

  3. Dockerfile Adjustments: The installation command in the raaid.Dockerfile has been updated to explicitly install ra-aid version 0.13.2. The updated section of the Dockerfile is as follows:

    FROM paulgauthier/aider
    
    USER root
    SHELL ["/bin/bash", "-c"]
    RUN apt-get update && \
        apt-get install -y ripgrep && \
        . /venv/bin/activate && \
        pip install ra-aid==0.13.2

Impact

  • This change should resolve the installation errors when building the Docker image.
  • Pinning the package version helps maintain consistent behavior across deployments and environments.

Conclusion

The modifications made in this pull request effectively resolve the issues identified in #53. By downgrading the ra-aid package to version 0.13.2, the installation process within the Docker environment is expected to succeed without errors.

Please review the changes, and feel free to provide any feedback or request further modifications.

Fixes #53

Update Dockerfile to use a specific version of ra-aid (0.13.2) 
instead of the latest version. This ensures reproducible builds 
and prevents potential breaking changes from newer versions.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bump ra-aid version down
1 participant