This repository has been archived by the owner on Feb 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update Dockerfile for 3.6.2 * tidy up
- Loading branch information
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM rocker/verse:3.6.1 | ||
FROM rocker/verse:3.6.2 | ||
MAINTAINER "Carl Boettiger" [email protected] | ||
|
||
RUN apt-get update \ | ||
|
@@ -26,8 +26,9 @@ RUN apt-get update \ | |
protobuf-compiler \ | ||
sqlite3 \ | ||
tk-dev \ | ||
unixodbc-dev \ | ||
&& install2.r --error \ | ||
unixodbc-dev | ||
|
||
RUN install2.r --error \ | ||
RColorBrewer \ | ||
RandomFields \ | ||
RNetCDF \ | ||
|
@@ -36,7 +37,6 @@ RUN apt-get update \ | |
gstat \ | ||
hdf5r \ | ||
lidR \ | ||
lwgeom \ | ||
mapdata \ | ||
maptools \ | ||
mapview \ | ||
|
@@ -50,10 +50,9 @@ RUN apt-get update \ | |
sp \ | ||
spacetime \ | ||
spatstat \ | ||
spatialreg \ | ||
spdep \ | ||
tmap \ | ||
geoR \ | ||
geosphere \ | ||
## from bioconductor | ||
&& R -e "BiocManager::install('rhdf5')" | ||
&& R -e "BiocManager::install('rhdf5', update=FALSE, ask=FALSE)" | ||
|