Skip to content

Instantly share code, notes, and snippets.

@richfitz
Created February 11, 2019 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richfitz/9401c9ae7b0b0fd04c409cbfbb1bfbec to your computer and use it in GitHub Desktop.
Save richfitz/9401c9ae7b0b0fd04c409cbfbb1bfbec to your computer and use it in GitHub Desktop.
Create a really old version of R
FROM yamamuteki/debian-etch-i386
RUN apt-get update && apt-get install -y \
build-essential \
gfortran \
less \
wget
RUN wget http://cran.r-project.org/src/base/R-1/R-1.8.0.tgz && \
tar -zxvf R-1.8.0.tgz
RUN cd R-1.8.0 && \
./configure && \
make && \
make install
ENTRYPOINT ["R"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment