Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -3,8 +3,8 @@ FROM rocker/geospatial:latest
|
|
3 |
|
4 |
WORKDIR /code
|
5 |
|
6 |
-
# Install R packages
|
7 |
-
RUN install2.r --error --
|
8 |
shiny \
|
9 |
shinydashboard \
|
10 |
dplyr \
|
|
|
3 |
|
4 |
WORKDIR /code
|
5 |
|
6 |
+
# Install R packages without suggested packages to avoid issues with unavailable dependencies
|
7 |
+
RUN install2.r --error --no-suggests --repos "https://cran.r-project.org" \
|
8 |
shiny \
|
9 |
shinydashboard \
|
10 |
dplyr \
|