From 9419f7e84c0ded7dface16b85f1e14cabb7d1d19 Mon Sep 17 00:00:00 2001 From: aceforeverd Date: Wed, 24 Jul 2024 17:37:29 +0800 Subject: [PATCH] fix(docker): numpy version lock --- demo/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/Dockerfile b/demo/Dockerfile index 90e4317d5b2..be14591374d 100644 --- a/demo/Dockerfile +++ b/demo/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* RUN if [ -f "/additions/pypi.txt" ] ; then pip config set global.index-url $(cat /additions/pypi.txt) ; fi -RUN pip install --no-cache-dir py4j==0.10.9 numpy lightgbm==3 tornado requests pandas==1.5 xgboost==1.4.2 +RUN pip install --no-cache-dir py4j==0.10.9 lightgbm==3 tornado requests pandas==1.5 xgboost==1.4.2 COPY init.sh /work/ COPY predict-taxi-trip-duration/script /work/taxi-trip/