Last active
December 17, 2021 17:31
-
-
Save chasemc/818111640daae05beb2b070641aa33fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Emacs, make this -*- mode: sh; -*- | |
FROM r-base:latest | |
LABEL org.label-schema.license="GPL-2.0" \ | |
org.label-schema.vcs-url="https://github.com/rocker-org/rocker" \ | |
maintainer="Dirk Eddelbuettel <[email protected]>" | |
RUN apt-get update \ | |
&& apt-get install -y --no-install-recommends \ | |
ghostscript \ | |
lmodern \ | |
pandoc-citeproc \ | |
qpdf \ | |
r-cran-formatr \ | |
r-cran-ggplot2 \ | |
r-cran-knitr \ | |
r-cran-rmarkdown \ | |
r-cran-runit \ | |
r-cran-testthat \ | |
texinfo \ | |
texlive-fonts-extra \ | |
texlive-fonts-recommended \ | |
texlive-latex-extra \ | |
texlive-latex-recommended \ | |
texlive-luatex \ | |
texlive-plain-generic \ | |
texlive-science \ | |
texlive-xetex \ | |
procps \ | |
&& install.r binb linl pinp tint \ | |
&& mkdir ~/.R \ | |
&& echo _R_CHECK_FORCE_SUGGESTS_=FALSE > ~/.R/check.Renviron \ | |
&& cd /usr/local/bin \ | |
&& ln -s /usr/lib/R/site-library/littler/examples/render.r . | |
CMD ["bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment