Skip to content

Commit f86f144

Browse files
committed
remove R packages for Docker setup
1 parent b3910c7 commit f86f144

1 file changed

Lines changed: 26 additions & 26 deletions

File tree

docker/Dockerfile

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -160,32 +160,32 @@ RUN set -eux; \
160160
RUN ln -s /usr/bin/python3 /usr/bin/python
161161

162162
# install R packages
163-
RUN Rscript -e 'install.packages("BiocManager", repos = "https://cloud.r-project.org")' \
164-
&& Rscript -e 'BiocManager::install("limma")' \
165-
&& Rscript -e 'BiocManager::install("edgeR")' \
166-
&& Rscript -e 'BiocManager::install("DESeq2")' \
167-
&& Rscript -e 'install.packages("beeswarm")' \
168-
&& Rscript -e 'install.packages("knitr")' \
169-
&& Rscript -e 'install.packages("gplots")' \
170-
&& Rscript -e 'BiocManager::install("goseq")' \
171-
&& Rscript -e 'BiocManager::install("GO.db")' \
172-
&& Rscript -e 'BiocManager::install("org.Sc.sgd.db")' \
173-
&& Rscript -e 'install.packages("ggiraph")' \
174-
&& Rscript -e 'install.packages("plotly")'
175-
176-
# confirm all R packages load
177-
RUN Rscript -e 'library(BiocManager)' \
178-
&& Rscript -e 'library(limma)' \
179-
&& Rscript -e 'library(edgeR)' \
180-
&& Rscript -e 'library(DESeq2)' \
181-
&& Rscript -e 'library(beeswarm)' \
182-
&& Rscript -e 'library(knitr)' \
183-
&& Rscript -e 'library(gplots)' \
184-
&& Rscript -e 'library(goseq)' \
185-
&& Rscript -e 'library(GO.db)' \
186-
&& Rscript -e 'library(org.Sc.sgd.db)' \
187-
&& Rscript -e 'library(ggiraph)' \
188-
&& Rscript -e 'library(plotly)'
163+
# RUN Rscript -e 'install.packages("BiocManager", repos = "https://cloud.r-project.org")' \
164+
# && Rscript -e 'BiocManager::install("limma")' \
165+
# && Rscript -e 'BiocManager::install("edgeR")' \
166+
# && Rscript -e 'BiocManager::install("DESeq2")' \
167+
# && Rscript -e 'install.packages("beeswarm")' \
168+
# && Rscript -e 'install.packages("knitr")' \
169+
# && Rscript -e 'install.packages("gplots")' \
170+
# && Rscript -e 'BiocManager::install("goseq")' \
171+
# && Rscript -e 'BiocManager::install("GO.db")' \
172+
# && Rscript -e 'BiocManager::install("org.Sc.sgd.db")' \
173+
# && Rscript -e 'install.packages("ggiraph")' \
174+
# && Rscript -e 'install.packages("plotly")'
175+
176+
# # confirm all R packages load
177+
# RUN Rscript -e 'library(BiocManager)' \
178+
# && Rscript -e 'library(limma)' \
179+
# && Rscript -e 'library(edgeR)' \
180+
# && Rscript -e 'library(DESeq2)' \
181+
# && Rscript -e 'library(beeswarm)' \
182+
# && Rscript -e 'library(knitr)' \
183+
# && Rscript -e 'library(gplots)' \
184+
# && Rscript -e 'library(goseq)' \
185+
# && Rscript -e 'library(GO.db)' \
186+
# && Rscript -e 'library(org.Sc.sgd.db)' \
187+
# && Rscript -e 'library(ggiraph)' \
188+
# && Rscript -e 'library(plotly)'
189189

190190
# Set up environment variables for the virtual environment
191191
ENV PATH="/opt/venv/bin:$PATH"

0 commit comments

Comments
 (0)