From 2bf1778a5c29a7033bed9cca9660fe76812bd770 Mon Sep 17 00:00:00 2001 From: Klein Hu Date: Thu, 17 Oct 2019 21:10:21 -0700 Subject: [PATCH] Fix ORTSRV docker build (#2160) * Fix ORTSRV docker build * More Dockerfile changes --- dockerfiles/Dockerfile.ngraph | 2 +- dockerfiles/Dockerfile.nuphar | 2 +- dockerfiles/Dockerfile.server | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/Dockerfile.ngraph b/dockerfiles/Dockerfile.ngraph index 5e021f56c5..a881a9d8c0 100644 --- a/dockerfiles/Dockerfile.ngraph +++ b/dockerfiles/Dockerfile.ngraph @@ -17,7 +17,7 @@ RUN apt-get update && \ ENV PATH="/opt/cmake/bin:${PATH}" RUN git clone --single-branch --branch ${ONNXRUNTIME_SERVER_BRANCH} --recursive ${ONNXRUNTIME_REPO} onnxruntime RUN /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_ubuntu.sh -p ${PYTHON_VERSION} && \ - /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_deps.sh + /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_deps.sh -p ${PYTHON_VERSION} WORKDIR / RUN mkdir -p /onnxruntime/build && \ diff --git a/dockerfiles/Dockerfile.nuphar b/dockerfiles/Dockerfile.nuphar index d776f310ee..f2d30ef36c 100644 --- a/dockerfiles/Dockerfile.nuphar +++ b/dockerfiles/Dockerfile.nuphar @@ -17,7 +17,7 @@ RUN apt-get update && \ ENV PATH="/opt/cmake/bin:${PATH}" RUN git clone --single-branch --branch ${ONNXRUNTIME_SERVER_BRANCH} --recursive ${ONNXRUNTIME_REPO} onnxruntime RUN /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_ubuntu.sh -p ${PYTHON_VERSION} && \ - /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_deps.sh + /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_deps.sh -p ${PYTHON_VERSION} WORKDIR / diff --git a/dockerfiles/Dockerfile.server b/dockerfiles/Dockerfile.server index 29fff56ead..5eb39088c4 100644 --- a/dockerfiles/Dockerfile.server +++ b/dockerfiles/Dockerfile.server @@ -21,7 +21,7 @@ RUN apt-get update && \ ENV PATH="/opt/cmake/bin:${PATH}" RUN git clone --single-branch --branch ${ONNXRUNTIME_SERVER_BRANCH} --recursive ${ONNXRUNTIME_REPO} onnxruntime RUN /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_ubuntu.sh -p ${PYTHON_VERSION} && \ - /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_deps.sh && \ + /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_deps.sh -p ${PYTHON_VERSION} && \ /onnxruntime/tools/ci_build/github/linux/docker/scripts/install_server_deps.sh ENV PATH="/usr/local/go/bin:${PATH}"