Skip to content

Commit

Permalink
Set python version
Browse files Browse the repository at this point in the history
  • Loading branch information
wilke committed Apr 27, 2023
1 parent 92ae9e6 commit 56a3102
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,13 @@ RUN apt-get update && apt-get install -y \

# R dependencies
RUN apt-get install -y r-base r-cran-nlme r-cran-ecodist r-cran-rcolorbrewer r-cran-xml && \
echo 'install.packages("matlab", repos = "http://cran.wustl.edu")' | R --no-save && \
echo 'source("http://bioconductor.org/biocLite.R"); biocLite("pcaMethods"); biocLite("preprocessCore"); biocLite("DESeq")' | R --no-save

echo 'install.packages("matlab", repos = "http://cran.wustl.edu")' | R --no-save
# echo 'source("http://bioconductor.org/biocLite.R"); biocLite("pcaMethods"); biocLite("preprocessCore"); biocLite("DESeq")' | R --no-save
RUN echo 'install.packages("BiocManager") ; BiocManager::install(version = "3.12")' | R --no-save

# python dependencies
RUN apt-get install -y python-dev python-pip && \
pip install \
RUN apt-get install -y python3-dev python3-pip && \
pip3 install \
openpyxl \
gspread \
xlrd==1.2.0 \
Expand Down

0 comments on commit 56a3102

Please sign in to comment.