-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into get-.ini-from-sf # Conflicts: # inst/osmconf.ini
- Loading branch information
Showing
60 changed files
with
961 additions
and
555 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"build": { "dockerfile": "Dockerfile"} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
FROM ubuntu:22.04 | ||
# minimal docker file to get sp and sf running on ubunty 16.04 image, | ||
# using gdal/geos/proj from ppa:ubuntugis/ubuntugis-unstable | ||
|
||
# MAINTAINER "edzerpebesma" [email protected] | ||
|
||
RUN apt-get update && apt-get install -y software-properties-common dirmngr | ||
RUN add-apt-repository ppa:ubuntugis/ubuntugis-unstable | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 | ||
|
||
# add the R 4.0 repo from CRAN -- adjust 'focal' to 'groovy' or 'bionic' as needed | ||
RUN add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/" | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9 | ||
|
||
RUN apt-get update | ||
RUN apt-get upgrade -y | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive; apt-get -y update \ | ||
&& apt-get install -y \ | ||
devscripts \ | ||
gdb \ | ||
git \ | ||
libcairo2-dev \ | ||
libcurl4-openssl-dev \ | ||
libexpat1-dev \ | ||
libpq-dev \ | ||
libsqlite3-dev \ | ||
libudunits2-dev \ | ||
make \ | ||
pandoc \ | ||
qpdf \ | ||
r-base-dev \ | ||
sqlite3 \ | ||
subversion \ | ||
valgrind \ | ||
vim \ | ||
tk-dev \ | ||
wget |
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
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
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
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
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
Oops, something went wrong.