From 2d04b1b7169f82906cfeb75a4d0dfb9bf030b92e Mon Sep 17 00:00:00 2001 From: changwoolim Date: Sun, 17 Dec 2023 03:44:53 +0900 Subject: [PATCH] adjust lightgbm version --- core.dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core.dockerfile b/core.dockerfile index 5713f90..819ff09 100644 --- a/core.dockerfile +++ b/core.dockerfile @@ -15,6 +15,8 @@ RUN R -e "remotes::install_github('statgarten/stove', ask=FALSE)" RUN R -e "remotes::install_github('statgarten/colorpen', ask=FALSE)" RUN R -e "remotes::install_github('statgarten/soroban', ask=FALSE)" RUN R -e "remotes::install_github('statgarten/door', ask=FALSE)" +RUN R -e "remove.packages('lightgbm')" +RUN R -e "install.packages('lightgbm', version = '3.3.5')" FROM rocker/shiny:4.3.1 RUN apt-get update