diff --git a/example/train/Dockerfile b/example/train/Dockerfile index d77a0d6..8882016 100644 --- a/example/train/Dockerfile +++ b/example/train/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get -y update && apt-get install -y --no-install-recommends \ # a significant amount of space. These optimizations save a fair amount of space in the # image, which reduces start up time. RUN wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py && \ - pip install numpy scipy scikit-learn pandas flask gevent gunicorn && \ + pip install numpy==1.14.5 scipy scikit-learn pandas flask gevent gunicorn && \ (cd /usr/local/lib/python2.7/dist-packages/scipy/.libs; rm *; ln ../../numpy/.libs/* .) && \ rm -rf /root/.cache