Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ FROM rocker/geospatial:latest
|
|
5 |
WORKDIR /code
|
6 |
|
7 |
# Install required R packages, excluding suggested dependencies to avoid rnaturalearthhires error
|
8 |
-
RUN Rscript -e "install.packages(c('shiny', 'shinydashboard', 'dplyr', 'readr', 'sf', 'cartogram', 'ggplot2', 'rnaturalearth', 'rnaturalearthdata', 'countrycode', 'DT', 'ggExtra', 'viridis','ggiraph','extrafont'), dependencies = c('Depends', 'Imports', 'LinkingTo'), repos = 'https://cran.r-project.org')"
|
9 |
|
10 |
# Copy the current directory (containing app.R and data) into the container
|
11 |
COPY . .
|
|
|
5 |
WORKDIR /code
|
6 |
|
7 |
# Install required R packages, excluding suggested dependencies to avoid rnaturalearthhires error
|
8 |
+
RUN Rscript -e "install.packages(c('shiny', 'shinydashboard', 'dplyr', 'readr', 'sf', 'cartogram', 'ggplot2', 'rnaturalearth', 'rnaturalearthdata', 'countrycode', 'DT', 'ggExtra', 'viridis','ggiraph','extrafont'), dependencies = c('Depends', 'Imports', 'LinkingTo','leaflet'), repos = 'https://cran.r-project.org')"
|
9 |
|
10 |
# Copy the current directory (containing app.R and data) into the container
|
11 |
COPY . .
|