Skip to content

Commit

Permalink
Figuring out ATLAS via flexiblas
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Sep 7, 2023
1 parent 46fcc2d commit e38af75
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
20 changes: 20 additions & 0 deletions docker/Dockerfile.flexiblas
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Thanks to https://github.com/Enchufa2/r-flexiblas
FROM fedora:rawhide

RUN dnf install R flexiblas-* -y

# Clonning tag v3.3.1 from the repo flexiblas
RUN dnf install R-flexiblas -y

RUN echo 'options(repos=c(CRAN="https://cloud.r-project.org"))' >> ~/.Rprofile

RUN \
Rscript -e 'utils::install.packages(c("fmcmc", "MASS", "ape", "coda", "tinytest", "xml2"))'

RUN Rscript -e 'utils::install.packages("lattice")'

RUN Rscript -e 'utils::install.packages(c("knitr", "rmarkdown"))'

RUN Rscript -e 'utils::install.packages("AUC")'

CMD ["bash"]
5 changes: 4 additions & 1 deletion docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ build:

clang:
docker build -t uscbiostats/aphylo:clang -f Dockerfile-clang .


flexiblas:
docker build -t uscbiostats/aphylo:flexiblas -f Dockerfile.flexiblas .

push: build
docker push uscbiostats/aphylo:release && \
docker push uscbiostats/aphylo:devel

0 comments on commit e38af75

Please sign in to comment.