From 8b1ab4f0ad554fa6edb5144a3a913faf140701aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EA=B7=9C=EB=AF=BC?= <32768535+GyuminJack@users.noreply.github.com> Date: Thu, 20 Jul 2023 03:36:59 +0900 Subject: [PATCH] Fix Python Dockerfile (#5984) --- docker/dockerfile-python | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/dockerfile-python b/docker/dockerfile-python index 541884811..900d05c30 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 && \