Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +26 -4
Dockerfile
CHANGED
|
@@ -1,14 +1,36 @@
|
|
| 1 |
-
FROM rocker/
|
| 2 |
|
| 3 |
WORKDIR /code
|
| 4 |
|
|
|
|
|
|
|
| 5 |
RUN install2.r --error \
|
| 6 |
shiny \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
dplyr \
|
|
|
|
|
|
|
|
|
|
| 8 |
ggplot2 \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
readr \
|
| 10 |
-
ggExtra
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
COPY . .
|
| 13 |
|
| 14 |
-
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|
|
|
|
| 1 |
+
FROM rocker/shiny-verse:latest
|
| 2 |
|
| 3 |
WORKDIR /code
|
| 4 |
|
| 5 |
+
RUN /rocker_scripts/install_geospatial.sh
|
| 6 |
+
|
| 7 |
RUN install2.r --error \
|
| 8 |
shiny \
|
| 9 |
+
shinyjs \
|
| 10 |
+
shinyWidgets \
|
| 11 |
+
shinybusy \
|
| 12 |
+
DBI \
|
| 13 |
+
duckdb \
|
| 14 |
dplyr \
|
| 15 |
+
dbplyr \
|
| 16 |
+
sf \
|
| 17 |
+
leaflet \
|
| 18 |
ggplot2 \
|
| 19 |
+
patchwork \
|
| 20 |
+
purrr \
|
| 21 |
+
leafsync \
|
| 22 |
+
tidyr \
|
| 23 |
+
stringr \
|
| 24 |
+
plotly \
|
| 25 |
readr \
|
| 26 |
+
ggExtra \
|
| 27 |
+
mapgl \
|
| 28 |
+
terra \
|
| 29 |
+
RColorBrewer \
|
| 30 |
+
shinycssloaders \
|
| 31 |
+
scales \
|
| 32 |
+
duckdbfs
|
| 33 |
+
|
| 34 |
COPY . .
|
| 35 |
|
| 36 |
+
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|