Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tools/gen_ort_dockerfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def dockerfile_for_linux(output_file):
ENV PYTHON_BIN_PATH=${PYBIN}/python${PYVER} \
PATH=${PYBIN}:${PATH}

RUN yum install -y \\
RUN dnf install -y \\
ca-certificates \\
curl \\
git \\
Expand All @@ -145,7 +145,9 @@ def dockerfile_for_linux(output_file):
wget \\
zip

RUN pip3 install patchelf==0.17.2 numpy
RUN pipx install cmake==4.0.3 --force

RUN pip3 install patchelf==0.17.2 numpy>=2.0.0
"""
else:
if os.getenv("CCACHE_REMOTE_ONLY") and os.getenv("CCACHE_REMOTE_STORAGE"):
Expand Down
Loading