cjerzak commited on
Commit
5173969
·
verified ·
1 Parent(s): f02e31c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -6
Dockerfile CHANGED
@@ -3,12 +3,17 @@ FROM rocker/r-base:latest
3
  WORKDIR /code
4
 
5
  RUN install2.r --error \
6
- shiny \
7
- dplyr \
8
- ggplot2 \
9
- readr \
10
- DT \
11
- ggExtra
 
 
 
 
 
12
 
13
  COPY . .
14
 
 
3
  WORKDIR /code
4
 
5
  RUN install2.r --error \
6
+ shiny \
7
+ dplyr \
8
+ ggplot2 \
9
+ readr \
10
+ DT \
11
+ ggExtra \
12
+ shinydashboard \
13
+ sf \
14
+ cartogram \
15
+ rnaturalearth \
16
+ rnaturalearthdata
17
 
18
  COPY . .
19