@@ -90,12 +90,12 @@ RUN conda update -y conda
9090
9191# Install all packages needed:
9292RUN conda install -y git ; \
93- pip install --upgrade pip cython numpy ; \
94- pip install pysam ; \
95- pip install pandas ; \
96- pip install ruffus ; \
93+ pip install --no-cache-dir -- upgrade pip cython numpy ; \
94+ pip install --no-cache-dir pysam ; \
95+ pip install --no-cache-dir pandas ; \
96+ pip install --no-cache-dir ruffus ; \
9797 conda install -y sphinx ; \
98- pip install sphinxcontrib-bibtex ; \
98+ pip install --no-cache-dir sphinxcontrib-bibtex ; \
9999 conda install -y -c r r=3.3 ; \
100100 conda install -y rpy2 ; \
101101 conda install -y readline ; \
@@ -106,16 +106,16 @@ RUN conda install -y git ; \
106106 conda install -y r-gdtools ; \
107107 R --vanilla -e 'source("https://bioconductor.org/biocLite.R") ; install.packages("svglite", repos = "http://cran.us.r-project.org") ; library("svglite")' ; \
108108 wget --no-check-certificate https://raw.githubusercontent.com/CGATOxford/cgat/master/requires.txt ; \
109- cat requires.txt | grep -v "#" | xargs -n 1 pip install ; \
109+ cat requires.txt | grep -v "#" | xargs -n 1 pip install --no-cache-dir ; \
110110 conda install -y alignlib-lite ; \
111111 conda install -y bedtools ; \
112112 conda install -y pybedtools ; \
113113 conda install -y -c bioconda ucsc-wigtobigwig ; \
114114 conda install -y icu -c conda-forge
115115 conda install -y icu ; \
116- pip install sphinxcontrib-bibtex ; \
117- pip install git+git://github.com/AntonioJBT/CGATPipeline_core.git ; \
118- pip install git+git://github.com/AntonioJBT/project_quickstart.git
116+ pip install --no-cache-dir sphinxcontrib-bibtex ; \
117+ pip install --no-cache-dir git+git://github.com/AntonioJBT/CGATPipeline_core.git ; \
118+ pip install --no-cache-dir git+git://github.com/AntonioJBT/project_quickstart.git
119119
120120
121121# This fails with continuumio/miniconda3 in this file and manually:
0 commit comments