From 443f39456edaa453282b7995ee24706245066c49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Shixiang=20Wang=20=28=E7=8E=8B=E8=AF=97=E7=BF=94=29?= Date: Tue, 24 Oct 2023 19:17:47 +0800 Subject: [PATCH] add some deps in docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44ebd44..e912541 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ LABEL \ org.label-schema.vendor="XSLiu Lab Project" ## Install system dependencies -RUN apt update -y && apt install -y libcurl4-openssl-dev libxml2-dev libssl-dev && \ +RUN apt update -y && apt install -y libcurl4-openssl-dev libxml2-dev libssl-dev cmake build-essential && \ apt autoremove -y && apt clean -y && apt purge -y && rm -rf /tmp/* /var/tmp/* ## Install R packages which are easy to install RUN R -e "install.packages('BiocManager', repos = 'https://cloud.r-project.org')" && \