Skip to content

Commit e38af75

Browse files
committed
Figuring out ATLAS via flexiblas
1 parent 46fcc2d commit e38af75

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

docker/Dockerfile.flexiblas

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Thanks to https://github.com/Enchufa2/r-flexiblas
2+
FROM fedora:rawhide
3+
4+
RUN dnf install R flexiblas-* -y
5+
6+
# Clonning tag v3.3.1 from the repo flexiblas
7+
RUN dnf install R-flexiblas -y
8+
9+
RUN echo 'options(repos=c(CRAN="https://cloud.r-project.org"))' >> ~/.Rprofile
10+
11+
RUN \
12+
Rscript -e 'utils::install.packages(c("fmcmc", "MASS", "ape", "coda", "tinytest", "xml2"))'
13+
14+
RUN Rscript -e 'utils::install.packages("lattice")'
15+
16+
RUN Rscript -e 'utils::install.packages(c("knitr", "rmarkdown"))'
17+
18+
RUN Rscript -e 'utils::install.packages("AUC")'
19+
20+
CMD ["bash"]

docker/Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ build:
44

55
clang:
66
docker build -t uscbiostats/aphylo:clang -f Dockerfile-clang .
7-
7+
8+
flexiblas:
9+
docker build -t uscbiostats/aphylo:flexiblas -f Dockerfile.flexiblas .
10+
811
push: build
912
docker push uscbiostats/aphylo:release && \
1013
docker push uscbiostats/aphylo:devel

0 commit comments

Comments
 (0)