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
9 changes: 4 additions & 5 deletions tools/gen_ort_dockerfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,11 +343,10 @@ def dockerfile_for_linux(output_file):
ARG ONNXRUNTIME_BUILD_CONFIG

RUN git clone -b rel-${ONNXRUNTIME_VERSION} --recursive ${ONNXRUNTIME_REPO} onnxruntime && \\
( cd onnxruntime && git checkout v${ONNXRUNTIME_VERSION} && \\
git config --global user.email "onnxruntime_backend@nvidia.com" && \\
git config --global user.name "onnxruntime_backend" && \\
git cherry-pick 53fcead6c747330dd69ac6b960972b535042b3ff ) && \\
cd onnxruntime && git submodule update --init --recursive
(cd onnxruntime && \\
git config --global user.email "onnxruntime_backend@nvidia.com" && \\
git config --global user.name "onnxruntime_backend" && \\
git cherry-pick 5b36110635b51216e40b6aa7aedac392ca44e075 )
Comment thread
whoisj marked this conversation as resolved.
"""

if FLAGS.onnx_tensorrt_tag != "":
Expand Down
Loading