-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathDockerfile
More file actions
43 lines (40 loc) · 734 Bytes
/
Dockerfile
File metadata and controls
43 lines (40 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Utiliser rocker/geospatial comme image de base
FROM rocker/geospatial
# Mettre à jour les packages du système
RUN apt-get update -qq && apt-get -y --no-install-recommends install \
libxml2-dev \
libcairo2-dev \
libpq-dev \
libssh2-1-dev \
libcurl4-openssl-dev \
libssl-dev
# Installer les packages R
RUN install2.r --error \
renv \
dplyr \
lubridate \
purrr \
stringr \
hubeau \
data.table \
forcats \
glue \
leaflet \
sf \
tidyr \
ggplot2 \
ggrepel \
png \
scales \
webp \
rmarkdown \
shiny \
knitr \
leafem \
mapview \
htmltools \
leafpop \
tidyverse \
leaflet.extras
# Installer ondetools depuis Github
RUN R -e "remotes::install_github('richaben/ondetools')"