Update Dockerfile
Browse files- Dockerfile +7 -7
Dockerfile
CHANGED
@@ -4,19 +4,19 @@ FROM rocker/geospatial:latest
|
|
4 |
WORKDIR /code
|
5 |
|
6 |
# Install R packages, specifying the CRAN repository for reliability
|
7 |
-
RUN install2.r --error --repos "https://cran.r-project.org" \
|
8 |
shiny \
|
|
|
9 |
dplyr \
|
10 |
-
ggplot2 \
|
11 |
readr \
|
12 |
-
DT \
|
13 |
-
ggExtra \
|
14 |
-
shinydashboard \
|
15 |
sf \
|
16 |
cartogram \
|
17 |
-
|
18 |
rnaturalearth \
|
19 |
-
rnaturalearthdata
|
|
|
|
|
|
|
20 |
|
21 |
# Copy the current directory into the container
|
22 |
COPY . .
|
|
|
4 |
WORKDIR /code
|
5 |
|
6 |
# Install R packages, specifying the CRAN repository for reliability
|
7 |
+
RUN install2.r --error --deps TRUE --repos "https://cran.r-project.org" \
|
8 |
shiny \
|
9 |
+
shinydashboard \
|
10 |
dplyr \
|
|
|
11 |
readr \
|
|
|
|
|
|
|
12 |
sf \
|
13 |
cartogram \
|
14 |
+
ggplot2 \
|
15 |
rnaturalearth \
|
16 |
+
rnaturalearthdata \
|
17 |
+
countrycode \
|
18 |
+
DT \
|
19 |
+
ggExtra \
|
20 |
|
21 |
# Copy the current directory into the container
|
22 |
COPY . .
|