From e53afd7a5b21bdca946dd0466f040059423ca5d4 Mon Sep 17 00:00:00 2001 From: huidongchen Date: Mon, 1 Jun 2020 21:22:07 -0400 Subject: [PATCH] update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 42cadd5..1d5da15 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ############################################################ -# Dockerfile to build STREAM v0.4.1 +# Dockerfile to build STREAM v1.0 ############################################################ # Set the base image to anaconda @@ -17,7 +17,7 @@ RUN conda config --add channels bioconda RUN apt-get update && apt-get install gsl-bin libgsl0-dev -y && apt-get clean #Install stream package -RUN conda install libgfortran stream=0.4.1 tzlocal -y && conda clean --all -y +RUN conda install libgfortran stream=1.0 jupyter tzlocal -y && conda clean --all -y RUN Rscript -e 'install.packages("stringi",repos="https://cloud.r-project.org/")'