Skip to content

Commit

Permalink
fix(docker): numpy version lock (#3966)
Browse files Browse the repository at this point in the history
  • Loading branch information
aceforeverd authored Jul 24, 2024
1 parent 96976f5 commit 2b7d970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 numpy==1.26.4

COPY init.sh /work/
COPY predict-taxi-trip-duration/script /work/taxi-trip/
Expand Down

0 comments on commit 2b7d970

Please sign in to comment.