From cb25fd4d8ad5c7e6eda78a0ef3082a21d41ac687 Mon Sep 17 00:00:00 2001 From: tmccrmck Date: Tue, 14 May 2019 13:33:44 -0700 Subject: [PATCH] Updates ARMv7 Dockerfile to use newer CMake (#1017) --- dockerfiles/Dockerfile.arm32v7 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/Dockerfile.arm32v7 b/dockerfiles/Dockerfile.arm32v7 index c272261285..f1f45dfce5 100644 --- a/dockerfiles/Dockerfile.arm32v7 +++ b/dockerfiles/Dockerfile.arm32v7 @@ -23,10 +23,10 @@ RUN pip3 install numpy # Build the latest cmake WORKDIR /code -RUN wget https://cmake.org/files/v3.12/cmake-3.12.3.tar.gz; -RUN tar zxf cmake-3.12.3.tar.gz +RUN wget https://github.com/Kitware/CMake/releases/download/v3.14.3/cmake-3.14.3.tar.gz +RUN tar zxf cmake-3.14.3.tar.gz -WORKDIR /code/cmake-3.12.3 +WORKDIR /code/cmake-3.14.3 RUN ./configure --system-curl RUN make RUN sudo make install @@ -53,4 +53,4 @@ RUN ./build.sh ${BUILDARGS} --enable_pybind --build_wheel RUN ls -l /code/onnxruntime/build/Linux/${BUILDTYPE}/*.so RUN ls -l /code/onnxruntime/build/Linux/${BUILDTYPE}/dist/*.whl -RUN [ "cross-build-end" ] \ No newline at end of file +RUN [ "cross-build-end" ]