File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,9 @@ def dockerfile_for_linux(output_file):
237237ARG ONNXRUNTIME_BUILD_CONFIG
238238
239239RUN git clone -b rel-${ONNXRUNTIME_VERSION} --recursive ${ONNXRUNTIME_REPO} onnxruntime && \
240- (cd onnxruntime && git submodule update --init --recursive)
240+ cd onnxruntime && git submodule update --init --recursive && \
241+ git config --global user.email "[email protected] " && git config --global user.name "Your Name" && \ 242+ git cherry-pick 709368ea1443dc1ff68dece31d692ad065fb94d4
241243 """
242244
243245 if FLAGS .onnx_tensorrt_tag != "" :
@@ -441,7 +443,9 @@ def dockerfile_for_windows(output_file):
441443ARG ONNXRUNTIME_VERSION
442444ARG ONNXRUNTIME_REPO
443445RUN git clone -b rel-%ONNXRUNTIME_VERSION% --recursive %ONNXRUNTIME_REPO% onnxruntime && \
444- (cd onnxruntime && git submodule update --init --recursive)
446+ cd onnxruntime && git submodule update --init --recursive && \
447+ git config --global user.email "[email protected] " && git config --global user.name "Your Name" && \ 448+ git cherry-pick 709368ea1443dc1ff68dece31d692ad065fb94d4
445449"""
446450
447451 if FLAGS .onnx_tensorrt_tag != "" :
You can’t perform that action at this time.
0 commit comments