|
| 1 | +'''Recipe to create either a docker container or Singularity image |
| 2 | +for computations using R. |
| 3 | +
|
| 4 | +Usage: |
| 5 | + $ hpccm --recipe r_container.py --format docker |
| 6 | + $ hpccm --recipe r_container.py --format singularity |
| 7 | +''' |
| 8 | + |
| 9 | +# Choose a base image |
| 10 | +Stage0.baseimage('ubuntu:22.04') |
| 11 | + |
| 12 | +# Install utilities |
| 13 | +Stage0 += apt_get(ospackages=['gist', 'wget', 'rclone', ]) |
| 14 | + |
| 15 | +# Install tools to install R |
| 16 | +Stage0 += apt_get(ospackages=['software-properties-common', 'apt-transport-https', 'dirmngr', 'gnupg']) |
| 17 | + |
| 18 | +# Add signature key for CRAN |
| 19 | +Stage0 += shell(commands=['wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc']) |
| 20 | + |
| 21 | +# Add CRAN repository |
| 22 | +Stage0 += shell(commands=['add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"']) |
| 23 | + |
| 24 | +# Install build tools |
| 25 | +Stage0 += apt_get(ospackages=['build-essential', 'make']) |
| 26 | +Stage0 += cmake(eula=True) |
| 27 | + |
| 28 | +# Install GNU compilers (upstream) |
| 29 | +compilers = gnu() |
| 30 | +Stage0 += compilers |
| 31 | + |
| 32 | +# Install libraries required to build R |
| 33 | +Stage0 += apt_get(ospackages=['openssl', 'libxml2-dev', 'libcurl4-openssl-dev', 'libz-dev', 'libssl-dev', |
| 34 | + 'libjpeg-dev', ]) |
| 35 | +# Install BLAS and Lapack |
| 36 | +Stage0 += apt_get(ospackages=['libopenblas-dev', 'liblapack-dev']) |
| 37 | + |
| 38 | +# Install R |
| 39 | +Stage0 += apt_get(ospackages=['r-base', ]) |
| 40 | + |
| 41 | +# installing libraries required by R packages, e.g., GDAL library |
| 42 | +Stage0 += apt_get(ospackages=['libgdal-dev', 'libudunits2-dev']) |
| 43 | + |
| 44 | +# Set environment variables |
| 45 | +Stage0 += environment(variables={'LC_ALL': 'C.UTF-8'}) |
| 46 | +Stage0 += environment(variables={'TZ': 'Europe/Brussels'}) |
0 commit comments