Skip to content

Instantly share code, notes, and snippets.

@brandmaier
Created August 11, 2021 14:52
Show Gist options
  • Save brandmaier/79b732c6a35244f0cb1ea12fea063247 to your computer and use it in GitHub Desktop.
Save brandmaier/79b732c6a35244f0cb1ea12fea063247 to your computer and use it in GitHub Desktop.
Fedora Linux Dockerfile for BGGM
#
# This is a Dockerfile to create a Fedora Linux environment
# with the latest version of BGGM from Donald's github repository
#
FROM rhub/fedora-clang-devel
ARG BUILD_DATE=2021-07-25
RUN dnf install R -y
RUN sudo dnf install 'dnf-command(copr)' -y
RUN sudo dnf copr enable iucar/cran -y
RUN sudo dnf install R-CoprManager -y
RUN Rscript -e 'install.packages("rmarkdown")'
RUN Rscript -e 'install.packages("devtools")'
RUN Rscript -e 'devtools::install_github("donaldRwilliams/BGGM")'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment