From bc9864151d27e61217825f29b6bb01d4b085a790 Mon Sep 17 00:00:00 2001 From: Gyumin Lee Date: Tue, 18 Jul 2023 10:06:34 +0900 Subject: [PATCH] fix dockerfile and apply recommendation --- docker/dockerfile-python | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/dockerfile-python b/docker/dockerfile-python index 541884811a0b..900d05c30012 100644 --- a/docker/dockerfile-python +++ b/docker/dockerfile-python @@ -26,6 +26,7 @@ RUN apt-get update && \ # lightgbm conda install -q -y numpy scipy scikit-learn pandas && \ git clone --recursive --branch stable --depth 1 https://github.com/Microsoft/LightGBM && \ + cd ./LightGBM && \ sh ./build-python.sh install && \ # clean apt-get autoremove -y && apt-get clean && \