-
Notifications
You must be signed in to change notification settings - Fork 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
containers: drop el8, fc36,fc37,fc38 and add fc40,fc41 #213
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ RUN echo v1 \ | |
gcc \ | ||
git \ | ||
libguestfs-tools-c \ | ||
libxml2-devel \ | ||
make \ | ||
openssl \ | ||
python3-devel \ | ||
|
@@ -25,6 +26,9 @@ RUN echo v1 \ | |
python3.11-setuptools \ | ||
python3.11-ovirt-engine-sdk4 \ | ||
python3.11-pip \ | ||
python3.12-devel \ | ||
python3.12-setuptools \ | ||
python3.12-pip \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not replace python 3.11 with 3.12? |
||
qemu-img \ | ||
qemu-kvm \ | ||
rpm-build \ | ||
|
@@ -39,3 +43,4 @@ COPY requirements.txt requirements.txt | |
RUN python3 -m pip install --upgrade --ignore-installed pip \ | ||
&& python3 -m venv /venv \ | ||
&& /venv/bin/python3 -m pip install --requirement requirements.txt | ||
RUN pip3.12 install ovirt-engine-sdk-python | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why use 2 version of pip inside the venv? If we must have python 3.12 to install ovirt-engine-sdk-python we should probably move to python 3.12. If we don't have a better way at add a comment explaing why we do this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this needed? maybe add a comment?