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 cf4cd89 commit ec06da7Copy full SHA for ec06da7
tools/gen_ort_dockerfile.py
@@ -275,8 +275,9 @@ def dockerfile_for_linux(output_file):
275
ARG ONNXRUNTIME_REPO
276
ARG ONNXRUNTIME_BUILD_CONFIG
277
278
-RUN git clone -b rel-${ONNXRUNTIME_VERSION} --recursive ${ONNXRUNTIME_REPO} onnxruntime && \
279
- (cd onnxruntime && git submodule update --init --recursive)
+RUN git clone -b rel-${ONNXRUNTIME_VERSION} --recursive ${ONNXRUNTIME_REPO} onnxruntime \\
+ && cd onnxruntime \\
280
+ && git cherry-pick 9dad9af9f9b48c05814d0c2d067d0565e8da6ce8
281
"""
282
283
if FLAGS.onnx_tensorrt_tag != "":
0 commit comments