You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 153B

12345678910
  1. FROM r-base
  2. RUN apt-get update
  3. RUN apt-get install -y libgdal-dev libproj-dev
  4. WORKDIR /code
  5. ADD install.R /code
  6. RUN Rscript install.R
  7. CMD ["Rscript"]