diff --git a/Dockerfile-build b/Dockerfile-build index 6f91e908c..ebb1b70dd 100644 --- a/Dockerfile-build +++ b/Dockerfile-build @@ -137,12 +137,7 @@ RUN \ cd $HOME && \ rm -rf swig-3* -# -# Install Python requirements -# -RUN pip install -U pip==19.3.1 - -RUN pip install numpy==1.18.1 scipy==1.3.1 setuptools==45.0.0 +# TODO Install DAAL # # PPC64 specific - certain libs/whl don't support PPC64LE @@ -162,6 +157,13 @@ RUN bash -c 'if [ `arch` = "ppc64le" ]; then \ fi' +# +# Install Python requirements +# +RUN pip install -U pip==19.3.1 + +RUN pip install numpy==1.18.1 scipy==1.3.1 setuptools==45.0.0 + COPY src/interface_py/requirements_buildonly.txt requirements_buildonly.txt RUN pip install -r requirements_buildonly.txt