From 549402479940b2a089281bea836cae75b7d14a3e Mon Sep 17 00:00:00 2001 From: Shucai Xiao Date: Tue, 22 Sep 2020 16:09:48 -0500 Subject: [PATCH] Update ort commit to latest ort changes (#643) Co-authored-by: Paul Fultz II --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5ac18c0a526..8f76bf7b4da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -102,7 +102,7 @@ RUN cget -p /opt/cmake install kitware/cmake@v3.13.0 ARG ONNXRUNTIME_REPO=https://github.com/Microsoft/onnxruntime ARG ONNXRUNTIME_BRANCH=master -ARG ONNXRUNTIME_COMMIT=bfc888613f4e831d29c8b0bc17182ae061712553 +ARG ONNXRUNTIME_COMMIT=417929b049829c44bcd59c0d0eae7ae6c71ab111 RUN git clone --single-branch --branch ${ONNXRUNTIME_BRANCH} --recursive ${ONNXRUNTIME_REPO} onnxruntime && \ cd onnxruntime && \ git checkout ${ONNXRUNTIME_COMMIT} && \