We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 527e9c8 commit d5a9381Copy full SHA for d5a9381
tools/gen_ort_dockerfile.py
@@ -441,7 +441,9 @@ def dockerfile_for_windows(output_file):
441
ARG ONNXRUNTIME_VERSION
442
ARG ONNXRUNTIME_REPO
443
RUN git clone -b rel-%ONNXRUNTIME_VERSION% --recursive %ONNXRUNTIME_REPO% onnxruntime && \
444
- (cd onnxruntime && git submodule update --init --recursive)
+ cd onnxruntime && git submodule update --init --recursive && \
445
+ git config --global user.email "you@example.com" && git config --global user.name "Your Name" && \
446
+ git cherry-pick 709368ea1443dc1ff68dece31d692ad065fb94d4
447
"""
448
449
if FLAGS.onnx_tensorrt_tag != "":
0 commit comments