Skip to content

Commit 44d7cd2

Browse files
authored
Merge pull request #117 from odh-on-pz/fix-ppc-build
Fixed ppc build
2 parents 869fcd3 + 88f1200 commit 44d7cd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.ppc64le.ubi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ FROM base-builder AS torch-builder
5555
RUN --mount=type=cache,target=/root/.cache/uv \
5656
--mount=type=bind,src=requirements/common.txt,dst=/requirements/common.txt,ro \
5757
source /opt/rh/gcc-toolset-13/enable && \
58-
sed -e 's/.*opencv.*//g; s/.*outlines.*//g; s/.*tensors.*//g' requirements/common.txt | uv pip install -r /dev/stdin && \
58+
sed -e 's/.*opencv.*//g; s/.*outlines.*//g; s/.*tensors.*//g; s/.*hf_xet.*//g' /requirements/common.txt | uv pip install -r /dev/stdin && \
5959
uv pip list
6060

6161
ARG MAX_JOBS
@@ -131,7 +131,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
131131
.. && \
132132
make install -j ${MAX_JOBS:-$(nproc)} && \
133133
cd ../../python/ && \
134-
uv pip install -v -r requirements/wheel-build.txt && \
134+
uv pip install -v -r requirements-wheel-build.txt && \
135135
PYARROW_PARALLEL=${PYARROW_PARALLEL:-$(nproc)} \
136136
python setup.py build_ext \
137137
--build-type=release --bundle-arrow-cpp \

0 commit comments

Comments
 (0)