Skip to content
Snippets Groups Projects
Commit 4d8a9267 authored by Carl Boettiger's avatar Carl Boettiger
Browse files

simplify by building on r-devel

parent c5726de2
No related branches found
No related tags found
No related merge requests found
deb http://snapshot.debian.org/archive/debian/20101016T044154Z/ squeeze main
deb-src http://snapshot.debian.org/archive/debian/20101016T044154Z/ squeeze main
deb http://snapshot.debian.org/archive/debian-security/20101016T044154Z/ squeeze/updates main
deb-src http://snapshot.debian.org/archive/debian-security/20101016T044154Z/ squeeze/updates main
deb http://http.debian.net/debian squeeze main
deb http://http.debian.net/debian squeeze-updates main
deb http://security.debian.org squeeze/updates main
deb http://http.debian.net/debian squeeze-lts main
deb http://snapshot.debian.org/archive/debian/20111016T044154Z/ squeeze main
deb-src http://snapshot.debian.org/archive/debian/20111016T044154Z/ squeeze main
deb http://snapshot.debian.org/archive/debian-security/20111016T044154Z/ squeeze/updates main
deb-src http://snapshot.debian.org/archive/debian-security/20111016T044154Z/ squeeze/updates main
## Emacs, make this -*- mode: sh; -*-
## start with the Docker 'base R' Debian-based image
FROM rocker/r-base
FROM rocker/r-devel
## This handle reaches Carl and Dirk
MAINTAINER "Carl Boettiger and Dirk Eddelbuettel" rocker-maintainers@eddelbuettel.com
## Remain current
RUN apt-get update -qq \
&& apt-get dist-upgrade -y
## From the Build-Depends of the Debian R package, plus subversion
RUN apt-get update -qq \
&& apt-get install -y --no-install-recommends \
autoconf \
bash-completion \
bison \
debhelper \
default-jdk \
g++ \
gcc \
gfortran \
groff-base \
libblas-dev \
libbz2-dev \
libcairo2-dev \
libjpeg-dev \
liblapack-dev \
liblzma-dev \
libncurses5-dev \
libpango1.0-dev \
libpcre3-dev \
libpng-dev \
libreadline-dev \
libtiff5-dev \
libx11-dev \
libxt-dev \
mpack \
subversion \
tcl8.5-dev \
texinfo \
texlive-base \
texlive-extra-utils \
texlive-fonts-extra \
texlive-fonts-recommended \
texlive-generic-recommended \
texlive-latex-base \
texlive-latex-extra \
texlive-latex-recommended \
tk8.5-dev \
x11proto-core-dev \
xauth \
xdg-utils \
xfonts-base \
xvfb \
zlib1g-dev
## Check out R-devel
RUN cd /tmp \
RUN rm -rf /tmp && mkdir /tmp && cd /tmp \
&& svn co http://svn.r-project.org/R/tags/R-2-0-0/ R-devel
## Build and install according the standard 'recipe' I emailed/posted years ago
## Build and install according the standard Dirk recipe
RUN cd /tmp/R-devel \
&& R_PAPERSIZE=letter \
R_BATCHSAVE="--no-save --no-restore" \
......
## Emacs, make this -*- mode: sh; -*-
## start with the Docker 'base R' Debian-based image
FROM rocker/r-base
FROM rocker/r-devel
## This handle reaches Carl and Dirk
MAINTAINER "Carl Boettiger and Dirk Eddelbuettel" rocker-maintainers@eddelbuettel.com
## Remain current
RUN apt-get update -qq \
&& apt-get dist-upgrade -y
## From the Build-Depends of the Debian R package, plus subversion
RUN apt-get update -qq \
&& apt-get install -y --no-install-recommends \
bash-completion \
bison \
debhelper \
default-jdk \
g++ \
gcc \
gfortran \
groff-base \
libblas-dev \
libbz2-dev \
libcairo2-dev \
libjpeg-dev \
liblapack-dev \
liblzma-dev \
libncurses5-dev \
libpango1.0-dev \
libpcre3-dev \
libpng-dev \
libreadline-dev \
libtiff5-dev \
libx11-dev \
libxt-dev \
mpack \
subversion \
tcl8.5-dev \
texinfo \
texlive-base \
texlive-extra-utils \
texlive-fonts-extra \
texlive-fonts-recommended \
texlive-generic-recommended \
texlive-latex-base \
texlive-latex-extra \
texlive-latex-recommended \
tk8.5-dev \
x11proto-core-dev \
xauth \
xdg-utils \
xfonts-base \
xvfb \
zlib1g-dev
## Check out R-devel
RUN cd /tmp \
RUN rm -rf /tmp && mkdir /tmp && cd /tmp \
&& svn co http://svn.r-project.org/R/tags/R-2-14-0/ R-devel
## Build and install according the standard 'recipe' I emailed/posted years ago
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment