-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
14 lines (12 loc) · 818 Bytes
/
Copy pathDockerfile
File metadata and controls
14 lines (12 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM bradrydzewski/ruby:2.0.0
# apt
RUN sudo apt-get install -y r-base
RUN export PATH=$PATH:/home/ubuntu/.rbenv/bin && \
export RBENV_VERSION=2.0.0-p353 && \
eval "$(rbenv init -)" && \
CC=gcc rbenv install 2.0.0-p353 && \
rbenv rehash && \
rbenv global 2.0.0-p353 && \
rbenv rehash && \
gem install bundler && \
rbenv rehash