Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
verse
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
rocker
verse
Commits
4d8a9267
Commit
4d8a9267
authored
9 years ago
by
Carl Boettiger
Browse files
Options
Downloads
Patches
Plain Diff
simplify by building on r-devel
parent
c5726de2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
binary/2.12.0-repo/sources.list
+8
-4
8 additions, 4 deletions
binary/2.12.0-repo/sources.list
compiled/2.0.0/Dockerfile
+3
-53
3 additions, 53 deletions
compiled/2.0.0/Dockerfile
compiled/2.14.0/Dockerfile
+2
-51
2 additions, 51 deletions
compiled/2.14.0/Dockerfile
with
13 additions
and
108 deletions
binary/2.12.0-repo/sources.list
+
8
−
4
View file @
4d8a9267
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
This diff is collapsed.
Click to expand it.
compiled/2.0.0/Dockerfile
+
3
−
53
View file @
4d8a9267
## 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"
\
...
...
This diff is collapsed.
Click to expand it.
compiled/2.14.0/Dockerfile
+
2
−
51
View file @
4d8a9267
## 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment