Skip to content

Commit

Permalink
added R setup (#7)
Browse files Browse the repository at this point in the history
* [R-package] [ci] added R setup

* Update README.md

* added pandoc

* add texinfo package to image

* Update README.md
  • Loading branch information
StrikerRUS authored and guolinke committed Dec 8, 2019
1 parent 60f3ba1 commit 671ddc1
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion dockers/ubuntu-14.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,27 @@ RUN curl -sL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.
&& /opt/conda/bin/conda install mkl qt -q -y \
&& /opt/conda/bin/conda clean -a -y \
&& chmod -R 777 /opt/conda

ENV CONDA=/opt/conda/

# Install R
RUN add-apt-repository \
"deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/" \
&& apt-key adv \
--keyserver keyserver.ubuntu.com \
--recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 \
&& apt-get update \
&& apt-get install \
--no-install-recommends \
-y \
r-base-dev=3.6.1-3trusty2 \
pandoc \
texinfo \
texlive-latex-recommended \
texlive-fonts-recommended \
texlive-fonts-extra \
qpdf

# Clean system
RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
Expand Down

0 comments on commit 671ddc1

Please sign in to comment.