mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-28 21:38:46 +00:00
docs(build): clarify UBI9 compiler requirement and remove redundant test
- Added a comment in build_container.sh to explain why we install python3.11‑devel, gcc, and make on UBI9. - Removed tests/integration/test_ubi9_toolchain.py and pytest.ini, as the test provided little value
This commit is contained in:
parent
0de530e99f
commit
d4ec593a35
3 changed files with 3 additions and 32 deletions
|
|
@ -72,6 +72,9 @@ if [[ $container_base == *"registry.access.redhat.com/ubi9"* ]]; then
|
|||
FROM $container_base
|
||||
WORKDIR /app
|
||||
|
||||
# We install the Python 3.11 dev headers and build tools so that any
|
||||
# C‑extension wheels (e.g. polyleven, faiss‑cpu) can compile successfully.
|
||||
|
||||
RUN dnf -y update && dnf install -y iputils net-tools wget \
|
||||
vim-minimal python3.11 python3.11-pip python3.11-wheel \
|
||||
python3.11-setuptools python3.11-devel gcc make && \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue